rabbitizer/.github/workflows/make.yml

26 lines
567 B
YAML
Raw Normal View History

2023-06-10 14:38:33 +00:00
name: Build C api and run tests
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
2022-12-15 19:06:48 +00:00
build_repo:
2023-04-30 12:48:47 +00:00
name: Build repo and run tests
runs-on: ubuntu-latest
steps:
2022-12-15 19:06:48 +00:00
- name: Checkout reposistory
uses: actions/checkout@v3
- name: make
2022-12-15 19:07:50 +00:00
run: make -j $(nproc) WERROR=1
2022-12-15 19:06:48 +00:00
- name: Run build info checks
run: ./tests/run_build_info_checks.sh
2022-12-15 19:06:48 +00:00
- name: Run logic checks
2022-12-19 15:20:32 +00:00
run: ./tests/run_logic_checks.sh
- name: Run instruction checks
run: ./tests/run_instruction_checks.sh