Skip to content

Fix teams list stuff #235

Fix teams list stuff

Fix teams list stuff #235

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
lint:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Install system deps
run: |
sudo apt-get update
sudo apt-get -y install imagemagick libmagickwand-dev shellcheck
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
- name: Install ruby dependencies
run: bundle install
- name: Run chefstyle
run: ./scripts/run_cookstyle.sh
# it's a but dumb to run MDL on two versions of ruby
# but it's better than re-setting up a container, installing
# imagemagic so that we can bundle install...
- name: Run markdownlint
run: ./scripts/run_markdownlint.sh .
- name: Run shellcheck
run: ./scripts/run_shellcheck.sh