Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMightyDuckOfDoom committed May 8, 2024
1 parent 79d7f3a commit d68c401
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- run: echo $SHELL
- name: Check setup
run: make .setup

Expand All @@ -33,10 +34,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run pylint
shell: bash
run: |
set +e
make pylint
exitcode = $?
exitcode=$?
if [ $exitcode -eq 4 ]; then
echo "Pylint warnings are allowed"
exit 0
Expand Down

0 comments on commit d68c401

Please sign in to comment.