Set status item tooltip. Update NSMenuItem init. #125
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
# GitHub Actions Virtual Environments | |
# https://github.com/actions/virtual-environments/ | |
name: Pod Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.1.app/Contents/Developer | |
jobs: | |
main: | |
name: Pod Lint | |
runs-on: macOS-13 | |
steps: | |
- name: git checkout | |
uses: actions/checkout@v4 | |
- name: ruby versions | |
run: | | |
ruby --version | |
gem --version | |
bundler --version | |
# https://github.com/ruby/setup-ruby | |
- name: ruby setup | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: pod lint | |
run: bundle exec pod lib lint --verbose --allow-warnings |