mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 06:19:43 +00:00
26 lines
567 B
YAML
26 lines
567 B
YAML
name: Build C api and run tests
|
|
|
|
# Build on every branch push, tag push, and pull request change:
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build_repo:
|
|
name: Build repo and run tests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout reposistory
|
|
uses: actions/checkout@v4
|
|
|
|
- name: make
|
|
run: make -j $(nproc) WERROR=1
|
|
|
|
- name: Run build info checks
|
|
run: ./tests/run_build_info_checks.sh
|
|
|
|
- name: Run logic checks
|
|
run: ./tests/run_logic_checks.sh
|
|
|
|
- name: Run instruction checks
|
|
run: ./tests/run_instruction_checks.sh
|