diff options
author | kokke <spam@rowdy.dk> | 2021-01-09 03:25:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 03:25:14 +0100 |
commit | 6a0bce9ea948b9bf94b27c9be5be14880299e361 (patch) | |
tree | 3cf7abb9ecefb7b01a9016701c1cf2ae134b7481 | |
parent | Update README.md (diff) | |
download | tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.tar tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.tar.gz tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.tar.bz2 tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.tar.lz tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.tar.xz tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.tar.zst tiny-AES-c-6a0bce9ea948b9bf94b27c9be5be14880299e361.zip |
-rw-r--r-- | .github/workflows/c-cpp.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..ee86dde --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,24 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make clean + run: make clean + - name: make + run: make + - name: make test + run: make test |