Skip to content

Commit

Permalink
feat: Adds workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed Nov 14, 2023
1 parent 4452072 commit f03c455
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/env_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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

0 comments on commit f03c455

Please sign in to comment.