mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-23 15:16:26 +01:00
20 lines
290 B
YAML
20 lines
290 B
YAML
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
|