mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2025-04-29 09:32:04 +08:00
commit 3b24ff6d15aa3671176629ca86ef1c34cd56d6cd Author: Eyre_S <sukazyo@outlook.com> Date: Thu Feb 27 19:04:30 2025 +0800 fix assembly run error commit 5dbad550ba3bc09c1c8d7ce4863d8d2dabf2c56d Author: Eyre_S <sukazyo@outlook.com> Date: Thu Feb 27 19:01:38 2025 +0800 fix artifact conflict commit 377140f225803138f404b89d77f0becdb2c6e912 Author: Eyre_S <sukazyo@outlook.com> Date: Thu Feb 27 18:56:08 2025 +0800 separate unit tests, remove unnecessary compile, add names
15 lines
367 B
YAML
15 lines
367 B
YAML
name: Tests
|
|
on: [push]
|
|
jobs:
|
|
check-build:
|
|
name: "Do project compile"
|
|
uses: ./.github/workflows/build.yml
|
|
check-unit-tests:
|
|
name: "Do unit tests"
|
|
needs: [check-build]
|
|
uses: ./.github/workflows/unit-test.yml
|
|
check-assembly-run:
|
|
name: "Generate and test run assembly"
|
|
needs: [check-build]
|
|
uses: ./.github/workflows/assembly-run.yml
|