WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Update workflow of GitHub Actions #195

Update workflow of GitHub Actions

Update workflow of GitHub Actions #195

Workflow file for this run

name: ubuntu-lint
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
ubuntu_lint:
name: Lint
runs-on: ubuntu-22.04
env:
RUBYOPT: -Ilib
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Setup ruby
uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
with:
ruby-version: 3.2.2
bundler-cache: true
- name: Run Lint
run: bundle exec rake rubocop
- name: Check manifest
run: bundle exec rake check_manifest
timeout-minutes: 15