diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 6cc058a..c14e37b 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -7,8 +7,8 @@ on: branches: [ main ] jobs: - build: - + build-macos: + name: Build and test on macOS runs-on: macos-latest steps: @@ -22,3 +22,15 @@ jobs: run: swift build -v - name: Run tests run: swift test -v + + build-ubuntu: + name: Build and test on Ubuntu + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v