You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
611 B
29 lines
611 B
--- |
|
|
|
name: CI-Lint |
|
|
|
on: |
|
push: |
|
paths: |
|
- "lint-workflow/**" |
|
|
|
jobs: |
|
CI: |
|
name: CI |
|
runs-on: ubuntu-20.04 |
|
steps: |
|
- name: Checkout |
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b |
|
|
|
- name: Set up Python |
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 |
|
with: |
|
python-version: "3.8" |
|
|
|
- name: Install dependencies |
|
run: | |
|
python -m pip install --upgrade pip |
|
pip install pytest pyyaml urllib3 |
|
- name: Test lint |
|
run: pytest |
|
working-directory: lint-workflow/tests
|
|
|