Skip to content

Commit

Permalink
Add CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshikaz1228 committed Aug 7, 2022
1 parent c9858d4 commit 6f2e22b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app

jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v

test:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: Test
run: swift test -v

0 comments on commit 6f2e22b

Please sign in to comment.