Skip to content

GitHub: upload release binaries (Linux only for now) #28

GitHub: upload release binaries (Linux only for now)

GitHub: upload release binaries (Linux only for now) #28

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: ./.github/install-dependencies.sh
- name: Build
run: |
if [ "$RUNNER_OS" != "macOS" ]; then
pip install tox
fi
tox