From ee4973018e56b7eb61973927d3097d7fd615d5b3 Mon Sep 17 00:00:00 2001 From: Zach Date: Thu, 19 Sep 2024 19:50:30 -0600 Subject: [PATCH] Create ubuntu.yml (#20) --- .github/workflows/ubuntu.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ubuntu.yml diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..ab88059 --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,22 @@ +# This workflow will build a Swift project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift + +name: Ubuntu + +on: + push: + branches: ["**"] + +jobs: + build: + runs-on: ubuntu-20.04 + + steps: + - uses: sersoft-gmbh/swifty-linux-action@v3 + with: + release-version: 6.0 + - uses: actions/checkout@v3 + - name: Build for release + run: swift build -v -c release + - name: Test + run: swift test -v