Prepare for 4.1.0 release #416
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: tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
pod-lib-lint: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update Bundler | |
run: bundle update --bundler | |
- name: Install Ruby gems with Bundler | |
run: bundle install | |
- name: Lint GTMAppAuth.podspec using local source | |
run: pod lib lint GTMAppAuth.podspec --verbose | |
spm-build-test: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build package | |
run: swift build | |
- name: Run Swift tests | |
run: swift test |