Skip to content

Commit

Permalink
add GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lawrence-forooghian committed Aug 1, 2024
1 parent 6c1be26 commit 9abbe77
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check

on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: macos-latest
# TODO Xcode versions (multiple?)
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: script/format/check
- run: script/lint/check
- run: swift build
- run: swift test

0 comments on commit 9abbe77

Please sign in to comment.