Mockup implementation with swift-nio #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
on: | |
push: | |
paths: | |
- "**.swift" | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Redis | |
run: brew install redis | |
- name: Build | |
run: swift build | |
- name: Test | |
run: | | |
brew services start redis | |
swift test | |
brew services stop redis |