Skip to content

Refactor GitHub Actions workflows, update README #7

Refactor GitHub Actions workflows, update README

Refactor GitHub Actions workflows, update README #7

Workflow file for this run

# Compile and test on every push/PR. Does NOT produce release packages.
# Installers for Windows, macOS, Linux, and Raspberry Pi: see publish.yml
name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build-and-test:
name: Build and test (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- run: dotnet build OscarWatch.slnx -c Release
- run: dotnet test OscarWatch.slnx -c Release --no-build