Skip to content

Fix Linux desktop Categories + add Windows vpk diagnostics #8

Fix Linux desktop Categories + add Windows vpk diagnostics

Fix Linux desktop Categories + add Windows vpk diagnostics #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- os: linux
runner: ubuntu-latest
- os: windows
runner: windows-latest
- os: macos
runner: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Linux dependencies
if: matrix.os == 'linux'
run: |
sudo apt-get update
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Show environment info
shell: bash
run: |
echo "Runner OS: ${{ matrix.os }}"
dotnet --version
- name: Restore dependencies
run: dotnet restore src/Taskly/Taskly.csproj
- name: Build
run: dotnet build src/Taskly/Taskly.csproj -c Release --no-restore