From 093faa2c021a12e334dc28693b4b069412e47319 Mon Sep 17 00:00:00 2001 From: Anton Palgunov Date: Tue, 14 Jan 2020 10:24:24 +0000 Subject: [PATCH] Create swift.yml --- .github/workflows/swift.yml | 15 +++++++++++++++ 1 file changed, 15 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..2e76632 --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,15 @@ +name: Swift + +on: [push] + +jobs: + build: + + runs-on: macOS-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v