Skip to content

Update workflows, use newer version of Python #937

Update workflows, use newer version of Python

Update workflows, use newer version of Python #937

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: pip install .[dev]
- name: Run tests
run: |
unset GITHUB_ACTION
oj-verify -h
python setup.py test
shell: bash