Skip to content

build: Bump actions/checkout from 6.0.0 to 6.0.1 #60

build: Bump actions/checkout from 6.0.0 to 6.0.1

build: Bump actions/checkout from 6.0.0 to 6.0.1 #60

Workflow file for this run

name: Build And Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup dotnet
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
with:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test with the dotnet CLI
run: dotnet test --no-restore