Skip to content

GitHub Actions: add required token to release workflow #34

GitHub Actions: add required token to release workflow

GitHub Actions: add required token to release workflow #34

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