fix(deps): update all patch dependencies #1945
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
on: push | |
name: Continuous Integration | |
jobs: | |
build: | |
name: PyTest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: docker://python:3.10 | |
uses: docker://python:3.10 # utils is currently 3.10 so we need to use 3.10 in ci | |
- name: Install poetry | |
env: | |
POETRY_VERSION: "1.3.2" | |
run: pip install poetry==${POETRY_VERSION} && poetry --version | |
- name: Install requirements | |
run: poetry install | |
- name: Copy site-packages in workspace | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: | | |
mkdir -p "${{ github.workspace }}/env/" && cp -fR $(poetry env list | poetry env info -p)/lib/python3.10/site-packages "${{ github.workspace }}/env/" | |
- name: Bootstrap and run tests | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: poetry run ./scripts/run_tests.sh |