Skip to content

⬆️ Bump filelock from 3.8.2 to 3.10.7 #1302

⬆️ Bump filelock from 3.8.2 to 3.10.7

⬆️ Bump filelock from 3.8.2 to 3.10.7 #1302

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7","3.8","3.9","3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: make download-poetry
- name: Set up cache
uses: actions/cache@v2.1.6
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y libgl1-mesa-dev
poetry config virtualenvs.in-project true
poetry install
- name: Run safety checks
run: |
STRICT=1 make check-safety
- name: Run style checks
run: |
STRICT=1 make check-style
- name: Run tests
run: |
make test
automerge:
needs: build
runs-on: ubuntu-latest
steps:
- uses: fastify/github-action-merge-dependabot@v2.5.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}