Skip to content

Commit

Permalink
Create swift.yml
Browse files Browse the repository at this point in the history
Swift, macOS 向けのビルドとテストを行う. Swift のバージョンによってはうまくいかないかもしれない.
  • Loading branch information
rrbox authored Sep 5, 2022
1 parent be45bcd commit ee9a1ff
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Swift

on:
pull_request:
branches: [ "main", "develop" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit ee9a1ff

Please sign in to comment.