Skip to content

Update GitHub Actions, keep workflows alive, rearrange README.md header #533

Update GitHub Actions, keep workflows alive, rearrange README.md header

Update GitHub Actions, keep workflows alive, rearrange README.md header #533

Workflow file for this run

name: .NET SDK CI
on:
schedule:
- cron: '0 0 * * *'
push:
branches: [ master ]
paths-ignore:
- '**.md'
- 'appveyor*'
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build-test:
strategy:
matrix:
dotnet-version: [{ver: 3.1.x, tfm: netcoreapp3.1}, {ver: 6.0.x, tfm: net6.0}, {ver: 8.0.x, tfm: net8.0}, {ver: 9.0.x, tfm: net9.0}]
os: [ubuntu-latest, windows-latest, macOS-latest]
exclude:
- dotnet-version.ver: 3.1.x
os: ubuntu-latest
- dotnet-version.ver: 3.1.x
os: macOS-latest
- dotnet-version.ver: 6.0.x
os: macOS-latest
name: Build & test on .NET ${{ matrix.dotnet-version.ver }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version.ver }}
- name: Test
run: |

Check failure on line 39 in .github/workflows/linux-macOS-CI.yml

View workflow run for this annotation

GitHub Actions / .NET SDK CI

Invalid workflow file

The workflow is not valid. .github/workflows/linux-macOS-CI.yml (Line: 39, Col: 14): Unrecognized named-value: 'dotnet-version'. Located at position 1 within expression: dotnet-version.tfm
dotnet test src/ConfigCat.Client.Tests/ConfigCat.Client.Tests.csproj -c Release -f ${{ dotnet-version.tfm }}