Skip to content

Bump actions/checkout from 6.1.0 to 7.0.1 (#1) #20

Bump actions/checkout from 6.1.0 to 7.0.1 (#1)

Bump actions/checkout from 6.1.0 to 7.0.1 (#1) #20

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5.4.0
with:
global-json-file: global.json
- run: dotnet restore CellSharp.sln --locked-mode
- run: dotnet build CellSharp.sln --configuration Release --no-restore
- run: dotnet test CellSharp.sln --configuration Release --no-build
- run: dotnet pack src/CellSharp/CellSharp.csproj --configuration Release --no-build --output artifacts