From 54db8e9801c1c1023c617b0861c59e379d0076dd Mon Sep 17 00:00:00 2001 From: Goncalo-FradeIOHK Date: Fri, 19 Aug 2022 09:38:53 +0100 Subject: [PATCH] ci: add build workflow Fixes ATL-1641 --- .github/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..b1e931c1 --- /dev/null +++ b/.github/workflows/build.yml @@ -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"