Skip to content

Update GitHub Actions workflows #3

Update GitHub Actions workflows

Update GitHub Actions workflows #3

Workflow file for this run

---
name: Something
"on":
pull_request:
types: [opened, reopened, synchronize]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install yamllint
- run: yamllint .
...