mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2024-11-24 12:07:39 +08:00
12 lines
267 B
YAML
12 lines
267 B
YAML
name: "Test"
|
|
run-name: "Test projects to ensure they are working"
|
|
on: [workflow_call]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/workflows/build.yml
|
|
- name: "Test Project"
|
|
run: sbt test
|