Skip to content

Update Python version to 3.10.12 and upgrade anyio to 4.6.2.post1 in … #3

Update Python version to 3.10.12 and upgrade anyio to 4.6.2.post1 in …

Update Python version to 3.10.12 and upgrade anyio to 4.6.2.post1 in … #3

Workflow file for this run

name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest