Skip to content

chore(deps): update actions/setup-dotnet action to v4 - autoclosed #11

chore(deps): update actions/setup-dotnet action to v4 - autoclosed

chore(deps): update actions/setup-dotnet action to v4 - autoclosed #11

Workflow file for this run

name: .NET CI
# When we push to the main branch or open a pull request into the main branch.
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build ./BscScanner.Tests