Moved files around renamced RHVoice to RHVoiceObjC and created new RH… #7
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- "swift:5.9.0" | |
name: Linux | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.image }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
clean: true | |
submodules: recursive | |
- run: | | |
rm -fr .build | echo "Removed build folder" | |
swift build -c release --target RHVoiceSwift |