-
Notifications
You must be signed in to change notification settings - Fork 6
40 lines (37 loc) · 954 Bytes
/
legacy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Legacy CI
on:
push:
branches:
- mainstream
paths-ignore:
- 'performance/Farkle.Benchmarks.CSharp/**'
- 'src/FarkleNeo/**'
- 'tests/Farkle.Tests.CSharp/**'
pull_request:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- 'performance/Farkle.Benchmarks.CSharp/**'
- 'src/FarkleNeo/**'
- 'tests/Farkle.Tests.CSharp/**'
schedule:
- cron: '18 14 * * 4'
permissions: read-all
jobs:
test:
name: 'Test the legacy F# codebase'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore .NET local tools
run: dotnet tool restore
- name: Run tests
run: dotnet run --project eng/Farkle.Build.fsproj -- -t TestLegacy