26 lines
546 B
YAML
Raw Normal View History

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