Project updates #200
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
# https://help.github.com/en/github/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idname | |
name: Checks | |
on: [pull_request] | |
jobs: | |
swiftlint: | |
name: Swiftlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: GitHub Action for SwiftLint | |
uses: norio-nomura/[email protected] | |
changelog: | |
name: Changelog | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Changelog Reminder | |
uses: peterjgrainger/[email protected] | |
with: | |
changelog_regex: 'CHANGELOG.md' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
podspec: | |
name: Podspec | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Bundler dependencies | |
run: bundle install | |
- name: Lint podspec | |
run: bundle exec pod lib lint --allow-warnings |