Skip to content

implement warning check for supported actions #159

implement warning check for supported actions

implement warning check for supported actions #159

Workflow file for this run

---
name: CI-Lint
on:
push:
paths:
- "lint-workflow/**"
workflow_dispatch: {}
jobs:
CI:
name: CI
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
with:
python-version: "3.9"
- name: Install dependencies
working-directory: lint-workflow
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Test lint
working-directory: lint-workflow
run: pipenv run pytest tests