rabbitizer/.github/workflows/make.yml
2022-12-15 16:06:48 -03:00

20 lines
384 B
YAML

name: make
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
build_repo:
name: Build repo
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
uses: actions/checkout@v3
- name: make
run: make $(nproc) WERROR=1
- name: Run logic checks
run: ./tests/c/logic_checks/run_logic_checks.sh