From 5844c7d83332dfbdb234b86bdf92c0b560a17305 Mon Sep 17 00:00:00 2001 From: KOTARO SUTO Date: Thu, 25 Nov 2021 16:04:23 -0800 Subject: [PATCH] Create new GitHub Actions to test on Ubuntu --- .github/workflows/swift-ubuntu.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/swift-ubuntu.yml diff --git a/.github/workflows/swift-ubuntu.yml b/.github/workflows/swift-ubuntu.yml new file mode 100644 index 0000000..75a491c --- /dev/null +++ b/.github/workflows/swift-ubuntu.yml @@ -0,0 +1,19 @@ +name: Swift Test on Ubuntu + +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v