Skip to content

Update from https://github.com/dofusdude/api-docs/commit/392871e10f4e… #3

Update from https://github.com/dofusdude/api-docs/commit/392871e10f4e…

Update from https://github.com/dofusdude/api-docs/commit/392871e10f4e… #3

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.x"
- name: Install deps
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test