Skip to content

Bump the dotnet group with 23 updates #118

Bump the dotnet group with 23 updates

Bump the dotnet group with 23 updates #118

Workflow file for this run

name: Test Linux
permissions:
contents: write
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build GithubBackup.slnx --configuration Release --no-restore
- name: Test
run: dotnet test GithubBackup.slnx --configuration Release --no-restore