fix: fix mk help on Python 3.10+ #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install shells on Ubuntu | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt install zsh | |
- name: Install shells on macOS | |
if: runner.os == 'macOS' | |
run: | | |
brew install zsh | |
- name: Install coreutils on macOS | |
if: runner.os == 'macOS' | |
run: | | |
brew install coreutils | |
- name: Install tox | |
run: | | |
python -m pip install tox | |
- name: Run tox | |
run: | | |
python -m tox run -e test-ci |