We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0701db commit c163175Copy full SHA for c163175
.github/workflows/main.yml
@@ -2,11 +2,15 @@ name: Test and build
2
3
on: [pull_request]
4
5
+
6
jobs:
7
build:
8
strategy:
9
matrix:
- os: ['ubuntu-22.04', 'ubuntu-20.04', 'ubuntu-18.04', 'macos-latest']
10
+ # macos-latest references are kept here for historical purposes. removed macos-latest from the
11
+ #matrix as it is not a typical case for users and causes a lot of friction with other linux-based
12
+ # installs. Recommend developing on codespaces or using an ubuntu container.
13
+ os: ['ubuntu-22.04', 'ubuntu-20.04', 'ubuntu-18.04']
14
fail-fast: false
15
runs-on: ${{ matrix.os }}
16
steps:
0 commit comments