Skip to content

Bump karancode/yamllint-github-action from 2.1.1 to 3.0.0 #6

Bump karancode/yamllint-github-action from 2.1.1 to 3.0.0

Bump karancode/yamllint-github-action from 2.1.1 to 3.0.0 #6

Workflow file for this run

name: Test
on: # yamllint disable-line rule:truthy
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test with pytest
run: |
pytest