Migrate from pylint, flake8, isort and black to ruff #97
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: Tests [Docker] | |
on: | |
push: | |
branches: | |
- master | |
- release/** | |
tags-ignore: | |
- v** | |
issue_comment: | |
types: [created] | |
permissions: | |
contents: read | |
actions: write | |
issues: write | |
pull-requests: write | |
jobs: | |
does-it-run: | |
name: Does it run? | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- ubuntu-latest | |
steps: | |
- name: Check comment review | |
if: >- | |
github.event_name == 'issue_comment' && | |
github.event.issue.pull_request && | |
contains(github.event.comment.body, 'github-actions-workflow-tests') == false | |
uses: action-pack/cancel@v1 | |
- name: Comment about start of workflow | |
if: >- | |
github.event_name == 'issue_comment' && | |
github.event.issue.pull_request && | |
contains(github.event.comment.body, 'github-actions-workflow-tests') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PR: ${{ github.event.issue.pull_request.html_url }} | |
run: | | |
gh pr comment $PR --body 'The "Tests [Docker]" workflow will be started.' | |
unit-tests: | |
name: Unit tests | |
needs: does-it-run | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- ubuntu-latest | |
steps: | |
- name: Checkout source at ${{ matrix.platform }} | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
bash ./bin/docker-compose-test.sh | |
integration-tests: | |
name: Integration tests | |
needs: does-it-run | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- ubuntu-latest | |
steps: | |
- name: Checkout source at ${{ matrix.platform }} | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
bash ./bin/docker-compose-it.sh |