mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2024-11-22 11:14:55 +08:00
12 lines
267 B
YAML
12 lines
267 B
YAML
|
name: Tests
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
check-build:
|
||
|
uses: ./.github/workflows/build.yml
|
||
|
check-unit-tests:
|
||
|
needs: [check-build]
|
||
|
uses: ./.github/workflows/unit-test.yml
|
||
|
check-assembly-run:
|
||
|
needs: [check-build]
|
||
|
uses: ./.github/workflows/assembly-run.yml
|