Skip to content

Commit e13a14d

Browse files
committed
CI: Remove lint job
Now using the standard workflow.
1 parent 7a4d321 commit e13a14d

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

.github/workflows/pull_request.yml

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -10,41 +10,6 @@ env:
1010
ANSIBLE_FORCE_COLOR: true
1111

1212
jobs:
13-
lint:
14-
runs-on: ubuntu-latest
15-
strategy:
16-
fail-fast: false
17-
matrix:
18-
ansible:
19-
- "2.9"
20-
- "2.10"
21-
- "2.12"
22-
steps:
23-
# Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job
24-
- uses: actions/checkout@v3
25-
26-
- uses: actions/setup-python@v4
27-
28-
- name: Install dependencies
29-
run: |
30-
python -m pip install --upgrade pip
31-
if [[ "${{ matrix.ansible }}" = "2.9" ]]; then
32-
ansible_package=ansible
33-
elif [[ "${{ matrix.ansible }}" = "2.10" ]]; then
34-
ansible_package=ansible-base
35-
else
36-
ansible_package=ansible-core
37-
fi
38-
pip install $ansible_package==${{ matrix.ansible }}.* 'ansible-lint==5.*'
39-
40-
- name: Install Ansible Galaxy dependencies
41-
run: |
42-
ansible-galaxy collection install pulp.squeezer
43-
44-
- name: Linting code
45-
run: |
46-
ansible-lint -v --force-color
47-
4813
integration:
4914
runs-on: ubuntu-latest
5015
strategy:

0 commit comments

Comments
 (0)