Files
CSSUDII.Sodium/.github/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: did not find expected key
2025-03-18 13:28:12 +13:00

31 lines
599 B
YAML

on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Build
path: ${{ github.workspace }}