Renamed "JSONPodcastsIndex" to "PodcastsIndex" #42
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: Build and run tests | |
on: [ push, pull_request ] | |
jobs: | |
macos_tests: | |
name: Unit tests on macOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -v -c release | |
- name: Run tests | |
run: swift test -v -c release | |
ubuntu_tests: | |
name: Unit tests on Ubuntu | |
runs-on: ubuntu-latest | |
container: | |
image: swift:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: swift build -v -c release | |
- name: Run tests | |
run: swift test -v -c release |