From 3eecc49fe9a9949de0cd8cdf9bf2e8695e0a4818 Mon Sep 17 00:00:00 2001 From: ensan <63481257+ensan-hcl@users.noreply.github.com> Date: Wed, 25 Aug 2021 12:01:59 +0900 Subject: [PATCH] Create 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..c68584b --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,19 @@ +name: Swift + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v