Explicit support for acquire_semaphore/release_semaphore in semian resources #1158
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: Analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: 13 7 * * 6 | |
concurrency: | |
group: ${{ github.ref }}-analysis | |
cancel-in-progress: true | |
jobs: | |
linting: | |
env: | |
BUNDLE_WITHOUT: test | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- | |
name: Ruby Linting | |
run: bundle exec rubocop | |
- | |
name: Yaml Linting | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_file: .yamllint.yml |