Skip to content

Add branch parameter, fix links #989

Add branch parameter, fix links

Add branch parameter, fix links #989

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
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: |
pip install pytest
unset GITHUB_ACTION
oj-verify -h
pytest
shell: bash