name: Run tests on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: make all run: make -j$(nproc) all - name: run-tests run: make -j$(nproc) run-tests