Merge pull request #568 from Swinject/maxim/expose-graph #17
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
# This is the First Workflow for Testing with Github Actions | |
name: Pod Lint | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
ENCODING: LC_CTYPE=en_US.UTF-8 | |
jobs: | |
pod-lint: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Linting PodSpec for Cocoapods | |
run: export "${{ env. ENCODING }}" | pod lib lint | |
shell: bash |