Skip to content

Improved testing actions #1

Improved testing actions

Improved testing actions #1

Workflow file for this run

name: Test Workflow
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Add .local/bin to PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.22.0
- name: Run test
run: poetry run python tests/e2e.py