mirror of
https://github.com/kokke/tiny-AES-c
synced 2024-11-21 21:11:58 +03:00
Create c-cpp.yml
This commit is contained in:
parent
cd58bb2d57
commit
6a0bce9ea9
24
.github/workflows/c-cpp.yml
vendored
Normal file
24
.github/workflows/c-cpp.yml
vendored
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user