Skip to content

Commit

Permalink
Add nightly workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danielctull committed Oct 24, 2024
1 parent 979de53 commit 668bbb4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Nightly

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

jobs:

test:
name: Test
runs-on: ubuntu-latest
container:
image: swiftlang/swift:nightly
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Swift Version
run: swift --version
- name: Release Build
run: swift build -v -c release
- name: Debug Build
run: swift build -v -c debug
- name: Debug Test
run: swift test -v -c debug

0 comments on commit 668bbb4

Please sign in to comment.