Skip to content
New issue

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

Apply workaround to install Pyyaml #83

Merged
merged 7 commits into from
Jul 18, 2023
Prev Previous commit
Next Next commit
run integ test on py3.11
  • Loading branch information
hawflau committed Jul 18, 2023
commit 9d30b38338a268f17edb8ab0eca1309f7feb8f66
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
hoffa marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,16 @@ jobs:
- macos-latest
- ubuntu-22.04
- windows-2019
python:
- "3.8"
- "3.11"
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: ${{ matrix.python }}

- name: Test official installer (pinned version)
if: startsWith(matrix.os, 'ubuntu')
Expand Down
Loading