Skip to content

mojimojiを撤去する #82

mojimojiを撤去する

mojimojiを撤去する #82

Workflow file for this run

name: Run Tox in Multiple Environments
on:
pull_request
jobs:
build:
runs-on: ${{matrix.platform}}
if: startsWith(github.head_ref, 'feature') || startsWith(github.head_ref, 'fix')
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install poetry tox
- name: Test with tox
run: poetry run tox