Skip to content

Commit

Permalink
Add a GH action
Browse files Browse the repository at this point in the history
...
  • Loading branch information
helje5 committed May 10, 2021
1 parent 422bd18 commit 7c95024
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and Test

on:
push:
pull_request:
schedule:
- cron: "40 10 * * 2"

jobs:
nextstep:
runs-on: macos-latest
steps:
- name: Select latest available Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: 12.2
- name: Checkout Repository
uses: actions/checkout@v2
- name: Build Swift Debug Package
run: swift build -c debug
- name: Build Swift Release Package
run: swift build -c release

0 comments on commit 7c95024

Please sign in to comment.