Skip to content

Commit

Permalink
ci: add test workflow
Browse files Browse the repository at this point in the history
Fixes ATL-1642
  • Loading branch information
goncalo-frade-iohk committed Aug 19, 2022
1 parent 4e5cde9 commit 2c210ce
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Test

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

jobs:
lint:
name: test
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Test
run: "swift test"

0 comments on commit 2c210ce

Please sign in to comment.