Skip to content

fix: pass envs dir path to shell script #30

fix: pass envs dir path to shell script

fix: pass envs dir path to shell script #30

Workflow file for this run

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