-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 837 Bytes
/
test.yaml
File metadata and controls
35 lines (32 loc) · 837 Bytes
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
name: Test Latest Nuget Package
on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
arch: x64
- os: macos-latest
arch: x64
- os: macos-latest
arch: arm64
- os: windows-latest
arch: x64
fail-fast: false
steps:
- uses: actions/checkout@v6.0.1
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.x'
- name: Update to latest ChromeForTesting Nuget
working-directory: ChromeForTesting
run: dotnet add ChromeForTesting.Tests package ChromeForTesting
- name: Run Tests
working-directory: ChromeForTesting
run: dotnet test ChromeForTesting.sln