Skip to content

chore(deps): update actions/setup-python action to v5 #561

chore(deps): update actions/setup-python action to v5

chore(deps): update actions/setup-python action to v5 #561

Workflow file for this run

---
name: CI
on: [push]
jobs:
yaml-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: 17.3.0
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5
with:
python-version: "3.9.x"
- run: yarn install --frozen-lockfile
- run: pip install -r requirements.txt
- name: Lint
run: yamllint .
- name: Formatting
run: yarn fmt:check