Migration de pic4review sur osm43 (cluster moji) #264
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [fork, pull_request, push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: pip install -U -r requirements.txt | |
- name: Run ansible-lint | |
run: ansible-lint | |
- name: Run Pylama | |
run: pylama |