Skip to content

Bump actions/checkout from 5 to 6 #30

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #30

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
6.x
- name: Restore dependencies
run: dotnet restore src/ByteAether.QueryLink.sln
- name: Build
run: dotnet build --no-restore --configuration Release src/ByteAether.QueryLink.sln
- name: Run tests
continue-on-error: true
run: dotnet test --no-build --verbosity normal --logger "trx" --configuration Release src/ByteAether.QueryLink.sln
- name: Upload test results
uses: actions/upload-artifact@v5
with:
name: test-results
path: ./**/TestResults/**/*.trx