豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Changed 'indent-sequences:' from "consistent" to "true" in .ymllint.yml file. Fixed affected advisories. #1409

Changed 'indent-sequences:' from "consistent" to "true" in .ymllint.yml file. Fixed affected advisories.

Changed 'indent-sequences:' from "consistent" to "true" in .ymllint.yml file. Fixed affected advisories. #1409

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: ['**']
jobs:
tests:
runs-on: ubuntu-latest
name: Linter
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install yamllint
run: |
python -m pip install --upgrade pip
pip install yamllint
- name: Lint YAML files
run: yamllint gems rubies
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
- name: Install ruby dependencies
run: bundle install --jobs 4 --retry 3
- name: Validate YAML
run: bundle exec rake lint