Skip to content

Update poetry lock #1309

Update poetry lock

Update poetry lock #1309

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9","3.10","3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y libgl1-mesa-dev
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}}