Skip to content

Set GH_TOKEN env var #860

Set GH_TOKEN env var

Set GH_TOKEN env var #860

Workflow file for this run

name: Test install script
on: push
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, macos-13]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Run install script
run: ./install.sh
env:
GH_TOKEN: ${{ github.token }}