Skip to content

Merge pull request #24 from s1berc0de/fix-mongo-updating #71

Merge pull request #24 from s1berc0de/fix-mongo-updating

Merge pull request #24 from s1berc0de/fix-mongo-updating #71

Workflow file for this run

name: ci
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install and configure Poetry
run: |
pip install -U pip poetry
poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install -E all
- name: Check
run: make check