Skip to content

Update main.yml

Update main.yml #114

Workflow file for this run

name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master, dev ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build
run: |
dotnet build
- name: Test
run: |
dotnet test