Try out CI/CD

This commit is contained in:
Ty3r0X 2023-11-24 17:46:29 +00:00 committed by GitHub
parent bd04eac0b0
commit 2dfc784ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
.github/workflows/c-cpp.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make
run: make
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
name: yay
path: ./project
if-no-files-found: warn