Skip to content

Bump actions/checkout from 2 to 4 #61

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #61

Workflow file for this run

name: Build & Test
on:
push:
branches:
- '**'
paths-ignore:
- 'README.md'
- 'LICENSE'
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/OpenOnlineConfig
steps:
- uses: actions/checkout@v4
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal