Skip to content

upgrade python version in workflow #8

upgrade python version in workflow

upgrade python version in workflow #8

Workflow file for this run

name: Testing
on:
push:
pull_request:
branches: [main]
jobs:
build:
name: Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: python3 setup.py install
- run: pip3 install pytest
- run: pytest