Skip to content

Commit

Permalink
test running server in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnzhou committed Jan 6, 2024
1 parent 2e4df31 commit 2edf467
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ jobs:
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test --skip IntegrationTests
- name: Test Server
run: |
make setup_server
curl localhost:8080
make teardown_server
# - name: Build
# run: swift build
# - name: Run tests
# run: swift test --skip IntegrationTests

0 comments on commit 2edf467

Please sign in to comment.