Skip to content

Commit

Permalink
Run more often and test both v1 and main
Browse files Browse the repository at this point in the history
  • Loading branch information
fwal committed Nov 26, 2020
1 parent d689040 commit 3f3f683
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/stability.yml
Expand Up @@ -2,19 +2,33 @@ name: Stability

on:
schedule:
- cron: '0 0 * * *'
- cron: '0 */3 * * *'

jobs:
v1:
name: ${{ matrix.version }} Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.3"]
version: ["v1"]
steps:
- uses: fwal/setup-swift@${{ matrix.version }}
- uses: fwal/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- name: Swift version
run: swift --version | grep ${{ matrix.swift }} || exit 1
master:
name: ${{ matrix.version }} Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.3"]
steps:
- uses: fwal/setup-swift@master
with:
swift-version: ${{ matrix.swift }}
- name: Swift version
Expand Down

0 comments on commit 3f3f683

Please sign in to comment.