Skip to content

Merge pull request #92 from pgulley/user-profile #34

Merge pull request #92 from pgulley/user-profile

Merge pull request #92 from pgulley/user-profile #34

Workflow file for this run

name: tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install flit
flit install
- name: Test with pytest
env:
MC_API_TOKEN: ${{ secrets.MC_API_TOKEN }}
run: |
pytest