Skip to content

Bump the python-packages group with 7 updates #20

Bump the python-packages group with 7 updates

Bump the python-packages group with 7 updates #20

Workflow file for this run

# This workflow will install Python dependencies and run tests with a single version of Python.
name: Test main branch
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install-test
- name: Test with pytest
run: |
make test