Skip to content

Update python version #105

Update python version

Update python version #105

Workflow file for this run

name: Run Python Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.4'
- name: Install Python 3
uses: actions/setup-python@v4
with:
python-version: 3.10.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Run tests with pytest
run: |
cd glitch
python -m unittest discover tests