Skip to content

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

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

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

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@f677139bbe7f9c59b41e40162b753c062f5d49a3 # 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