mirror of
https://github.com/Xevion/spotify-quickauth.git
synced 2025-12-06 05:16:37 -06:00
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Integration
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_run:
|
|
workflows: ["Build"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
integration-windows:
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- os: windows-latest
|
|
|
|
permissions: {}
|
|
runs-on: ${{ matrix.os }}
|
|
name: 'Integration (${{ matrix.os }})'
|
|
|
|
|
|
steps:
|
|
- name: Run Integration
|
|
run: iex (irm "https://raw.githubusercontent.com/Xevion/spotify-quickauth/refs/heads/master/run.ps1")
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
integration-unix:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, macos-13]
|
|
|
|
permissions: {}
|
|
runs-on: ${{ matrix.os }}
|
|
name: 'Integration (${{ matrix.os }})'
|
|
|
|
steps:
|
|
- name: Run Integration
|
|
run: curl -sSL https://raw.githubusercontent.com/Xevion/spotify-quickauth/refs/heads/master/run.sh | sh
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |