Skip to content

実行環境の更新 #957

実行環境の更新

実行環境の更新 #957

Workflow file for this run

name: test
on:
push:
branches:
- master
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