Files
CSSUDII.Sodium/.github/workflows/build.yml
Lucas Petrino 7488aa8ae6
All checks were successful
/ build (push) Successful in 2m14s
Fix YAML
2025-03-18 13:30:45 +13:00

27 lines
604 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 }}