tiny-AES-c/.github/workflows/c-cpp.yml

25 lines
385 B
YAML
Raw Normal View History

2021-01-09 05:25:38 +03:00
name: CI
2021-01-09 05:25:14 +03:00
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