Skip to content

Commit

Permalink
ci: build on linux, too
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEidinger committed Jul 21, 2023
1 parent 7ca1ee5 commit d669d45
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- "**/*.dat"

jobs:
build:
build-mac:

runs-on: macos-latest

Expand All @@ -31,4 +31,15 @@ jobs:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

build-linux:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit d669d45

Please sign in to comment.