diff options
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c1627ba4..c87c200e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,20 +9,20 @@ jobs: timeout-minutes: 60 strategy: matrix: - os: [macOS-10.14, windows-2016, ubuntu-16.04] + os: [macOS-10.14, windows-2019, ubuntu-16.04] kind: ['test', 'test_debug', 'test_std', 'bench', 'lint'] exclude: - - os: windows-2016 + - os: windows-2019 kind: 'bench' - os: macOS-10.14 kind: 'bench' - - os: windows-2016 + - os: windows-2019 kind: 'lint' - os: macOS-10.14 kind: 'lint' - - os: windows-2016 + - os: windows-2019 kind: 'test_debug' - os: macOS-10.14 kind: 'test_debug' |