mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
35 lines
638 B
YAML
35 lines
638 B
YAML
name: Comprehensive Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main", "dev" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
test-valgrind:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: install valgrind
|
|
run: sudo apt install valgrind
|
|
- name: make test (valgrind)
|
|
run: make test
|
|
|
|
test-sanitized:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: make test (sanitized)
|
|
run: make test-sanitized
|
|
|
|
test-mingw32:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: make test (mingw32)
|
|
run: make test
|