Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Sep 2, 2024
1 parent a209a67 commit d3736ed
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 26 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ env:

jobs:
package-test:
runs-on: macos-latest

strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
Expand All @@ -37,38 +40,39 @@ jobs:
run: |
rustup update stable
cargo install --path .
- name: boto3
run: |
pip3 install boto3
pylyzer -c "import boto3"
echo "OK: boto3"
# TODO:
# - name: boto3
# continue-on-error: true
# run: |
# pip3 install boto3
# pylyzer -c "import boto3"
- name: urllib3
continue-on-error: true
run: |
pip3 install urllib3
pylyzer -c "import urllib3"
echo "OK: urllib3"
- name: setuptools
continue-on-error: true
run: |
pip3 install setuptools
pylyzer -c "import setuptools"
echo "OK: setuptools"
- name: requests
continue-on-error: true
run: |
pip3 install requests
pylyzer -c "import requests"
echo "OK: requests"
- name: certifi
continue-on-error: true
run: |
pip3 install certifi
pylyzer -c "import certifi"
echo "OK: certifi"
- name: charset-normalizer
continue-on-error: true
run: |
pip3 install charset-normalizer
pylyzer -c "import charset_normalizer"
echo "OK: charset-normalizer"
- name: idna
continue-on-error: true
run: |
pip3 install idna
pylyzer -c "import idna"
echo "OK: idna"
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ edition = "2021"
repository = "https://github.com/mtshiba/pylyzer"

[workspace.dependencies]
erg_common = { version = "0.6.43-nightly.1", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.43-nightly.1", features = ["py_compat", "els"] }
els = { version = "0.1.55-nightly.1", features = ["py_compat"] }
erg_common = { version = "0.6.43-nightly.2", features = ["py_compat", "els"] }
erg_compiler = { version = "0.6.43-nightly.2", features = ["py_compat", "els"] }
els = { version = "0.1.55-nightly.2", features = ["py_compat"] }
# rustpython-parser = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
# rustpython-ast = { version = "0.3.0", features = ["all-nodes-with-ranges", "location"] }
rustpython-parser = { git = "https://github.com/RustPython/Parser", version = "0.4.0", features = ["all-nodes-with-ranges", "location"] }
Expand Down

0 comments on commit d3736ed

Please sign in to comment.