Skip to content

Update year (#210) #151

Update year (#210)

Update year (#210) #151

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ubuntu:
runs-on: Ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Before install
run: |
python3 -m venv ~/venv
source ~/venv/bin/activate
- name: Install packages
run: |
pip install --upgrade pip wheel setuptools
pip install -r requirements/default.txt
pip install -r requirements/test.txt
pip install .
pip list
- name: Test permute
run: make test-all
macos:
runs-on: macOS-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Before install
run: |
python3 -m venv ~/venv
source ~/venv/bin/activate
- name: Install packages
run: |
pip install --upgrade pip wheel setuptools
pip install -r requirements/default.txt
pip install -r requirements/test.txt
pip install .
pip list
- name: Test permute
run: make test-all
windows:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Before install
run: |
python -m venv venv
venv\Scripts\Activate.ps1
- name: Install packages
run: |
pip install --upgrade pip wheel setuptools
pip install -r requirements\default.txt
pip install -r requirements\test.txt
pip install .
pip list
- name: Test permute
run: make test-all