Skip to content

Update README.md link #47

Update README.md link

Update README.md link #47

Workflow file for this run

name: mokuro
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: mokuro
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e mokuro
- name: Test
run: |
pytest mokuro/tests