Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Update dependencies #47

Update dependencies

Update dependencies #47

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
# Cancel running jobs for the same branch and workflow.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pip-tools
pip-sync
- name: Tests
run: |
pytest --color=yes