tipe/.github/workflows/tests.yml

20 lines
290 B
YAML
Raw Normal View History

2022-05-14 10:40:06 +02:00
name: Run tests
2022-04-10 21:35:29 +02:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2022-11-04 12:53:38 +01:00
- name: make all
run: make -j$(nproc) all
2022-10-24 12:54:51 +02:00
- name: run-tests
run: make -j$(nproc) run-tests