We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The matrix for this build/test workflow specifies ubuntu and macos, but the first line hard codes the runner to be ubuntu.
gctree/.github/workflows/build-and-test.yml
Lines 12 to 16 in 37792e0
strategy: matrix: os: [ubuntu-latest, macos-latest] python-version: [3.7, 3.8, 3.9] runs-on: ${{ matrix.os }}
Or if running only on ubuntu was intended, we can remove macos from the matrix.
The text was updated successfully, but these errors were encountered:
fix hard-coded runner to adhere to matrix, closes #114
da816aa
316b8ea
No branches or pull requests
The matrix for this build/test workflow specifies ubuntu and macos, but the first line hard codes the runner to be ubuntu.
gctree/.github/workflows/build-and-test.yml
Lines 12 to 16 in 37792e0
I think we want to replace to something like:
Or if running only on ubuntu was intended, we can remove macos from the matrix.
The text was updated successfully, but these errors were encountered: