Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
paiv committed Oct 28, 2024
1 parent 00c91f3 commit 8b1f1c0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ jobs:


build-swift:
strategy:
matrix:
BUILD_TYPE: [debug, release]

runs-on: ubuntu-latest

steps:
Expand All @@ -68,8 +72,8 @@ jobs:
sudo apt-get install -y libicu-dev libicu70
- name: Build
run: swift build
run: swift build -c ${{matrix.BUILD_TYPE}}

- name: Test
run: swift test
run: swift test -c ${{matrix.BUILD_TYPE}}

0 comments on commit 8b1f1c0

Please sign in to comment.