retour check main
This commit was merged in pull request #10.
This commit is contained in:
24
.gitea/workflows/Main.yaml
Normal file
24
.gitea/workflows/Main.yaml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: check main state
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
dotnet-version: [ '8.0.x' ]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Setup dotnet
|
||||||
|
uses: actions/setup-dotnet@v3
|
||||||
|
with:
|
||||||
|
dotnet-version: '8.0.x'
|
||||||
|
- name: Install dependencies
|
||||||
|
run: dotnet restore ./src/LittleTown.sln
|
||||||
|
- name: Build
|
||||||
|
run: dotnet build ./src/LittleTown.sln
|
||||||
|
- name: Test with the dotnet CLI
|
||||||
|
run: dotnet test ./src/LittleTown.sln
|
||||||
Reference in New Issue
Block a user