Use relative_path for local Swift packages #136
Workflow file for this run
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: Lint | |
jobs: | |
lint: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [2.6] | |
os: [ubuntu-20.04] | |
name: Lint | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set build image var | |
run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV | |
- name: Checkout git | |
uses: actions/checkout@v1 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: gems@v1-${{ matrix.os }}-${{ env.ImageVersion }}-Ruby${{ matrix.ruby }}-${{ hashFiles('Gemfile.lock') }} | |
restore-keys: | | |
gems@v1-${{ matrix.os }}-${{ env.ImageVersion }}-Ruby${{ matrix.ruby }}- | |
- name: Run bundle install | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 --without debugging documentation | |
- name: Run Tests | |
run: bundle exec rake spec:all | |
env: | |
COCOAPODS_CI_TASKS: LINT | |
on: | |
push: | |
branches: | |
- "master" | |
- "*-stable" | |
pull_request: | |
branches: | |
- master | |
- "*-stable" | |