Bump urllib3 from 2.2.1 to 2.2.2 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci_test | |
on: [push] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache things | |
uses: actions/cache@v2 | |
with: | |
key: ${{ runner.os }} | |
path: | | |
~/.cache | |
~/.poetry | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
curl -sSL https://install.python-poetry.org | python3 - | |
export POETRY_HOME=$HOME/.poetry/bin | |
echo "$POETRY_HOME" >>$GITHUB_PATH | |
export PATH="$POETRY_HOME:$PATH" | |
poetry install | |
- name: Run pre-commit | |
run: | | |
poetry run pre-commit run -av | |
# - name: Verify executables run | |
# run: | | |
# poetry run tests/test_executable_help.py | |
# - name: Run Pytest | |
# run: | | |
# poetry run pytest -vv |