Skip to content

Bump actions/checkout from 6 to 7 #132

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #132

Workflow file for this run

name: Tests
on:
workflow_dispatch:
inputs:
version:
description: "Version number (leave empty for auto)"
required: false
type: string
use_self_hosted_runners:
description: Use self-hosted runners.
required: false
default: true
type: boolean
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
paths-ignore:
- "README.md"
- ".github/**"
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
jobs:
test:
name: test
uses: ./.github/workflows/run-tests.yml
with:
use_self_hosted_runners: ${{ github.event_name != 'workflow_dispatch' || inputs.use_self_hosted_runners }}