From ff244c3712fa0eb56ac0f4c57bec3e2b6ce9e096 Mon Sep 17 00:00:00 2001 From: Alexander Young Date: Tue, 11 Oct 2022 22:19:05 -0700 Subject: [PATCH] Create swift.yml (#57) * Create swift.yml * Update swift.yml * Update swift.yml --- .github/workflows/swift.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..5706c5c --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,19 @@ +name: Swift + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build-and-test: + name: Build and Test + runs-on: macos-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v