Skip to content

feat: Adds workflow

feat: Adds workflow #1

Workflow file for this run

name: Environment Test
on: [push, workflow_dispatch]
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, windows-latest, macos-12, macos-11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install