mycroforge/.gitea/workflows/gitea-ci.yml
mdnapo 67a693b916
Some checks failed
Test and build / test (push) Has been cancelled
Changed .yaml to .yml and changed name back to default
2024-10-06 09:53:57 +02:00

19 lines
539 B
YAML

name: Test and build
run-name: ${{ gitea.actor }} is building MycroForge.CLI
on: [ push ]
jobs:
test:
runs-on: ubuntu-default
steps:
- uses: https://github.com/actions/checkout@v4
- uses: https://github.com/actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: "Run dotnet restore"
run: dotnet restore
- name: "Run dotnet build"
run: dotnet build --no-restore
- name: "Test the image"
run: dotnet test --no-build --verbosity normal