Skip to content

Commit

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

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

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

- name: Build
run: "swift build"

0 comments on commit 9f62f33

Please sign in to comment.