Fix Code Generation with GYB (#205) #132
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: ci | |
on: | |
pull_request: | |
types: [ opened, synchronize ] | |
branches: [ develop ] | |
push: | |
branches: [ develop ] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer | |
jobs: | |
tests: | |
name: Test with Swift ${{ matrix.swift }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12] | |
swift: ["5.5"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: fwal/setup-swift@v1 | |
with: | |
swift-version: ${{ matrix.swift }} | |
- name: Make install | |
run: make install | |
- name: Tests | |
run: make test | |
# | |
# CODECOV temporarily disabled due to issues running 'bundle install' | |
# with racc-1.6.0 with native extensions. | |
# | |
# - uses: codecov/codecov-action@v1 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: ./test-reports/cobertura.xml | |
# fail_ci_if_error: true # optional (default = false) | |
# verbose: true # optional (default = false) |