use setup python properly
Some checks failed
Docker Compose Linter / Docker Compose Linter (3.8) (push) Failing after 3s
Some checks failed
Docker Compose Linter / Docker Compose Linter (3.8) (push) Failing after 3s
This commit is contained in:
parent
19b3d4d5db
commit
4a05d18462
1 changed files with 6 additions and 1 deletions
|
@ -3,12 +3,17 @@ on: [push]
|
|||
jobs:
|
||||
Docker Compose Linter:
|
||||
runs-on: docker
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.8"]
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Install Linter
|
||||
run: pip install yamllint
|
||||
|
|
Loading…
Reference in a new issue