mirror of
https://github.com/Xevion/spotify-quickauth.git
synced 2026-01-31 08:26:04 -06:00
26 lines
828 B
YAML
26 lines
828 B
YAML
name: Integration Test
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Build"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
integration:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run Integration
|
|
if: ${{ !contains(matrix.os, 'windows') }}
|
|
run: curl -sSL https://raw.githubusercontent.com/Xevion/spotify-player-quickauth/refs/heads/master/run.sh | sh
|
|
|
|
- name: Run Integration (Windows)
|
|
if: ${{ contains(matrix.os, 'windows') }}
|
|
run: iex (irm "https://raw.githubusercontent.com/Xevion/spotify-player-quickauth/refs/heads/master/run.ps1") |