plugin/builder: increase retries for requests to composer #490
Workflow file for this run
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 | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- main | |
jobs: | |
pylint: | |
name: "🐍 Lint" | |
runs-on: ubuntu-latest | |
container: | |
image: registry.fedoraproject.org/fedora:36 | |
steps: | |
- name: Install test dependencies | |
run: dnf -y install python3-boto3 python3-flexmock python3-httpretty python3-jsonschema python3-koji python3-pylint python3-requests | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Analysing the code with pylint | |
run: | | |
python3 -m pylint plugins/**/*.py test/**/*.py | |
unit: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Clone Repository" | |
uses: actions/checkout@v3 | |
- name: "Run unit tests" | |
uses: osbuild/koji-osbuild/test@main | |
with: | |
run: | | |
pytest --cov-report=xml --cov=osbuild test/unit/ | |
- name: Send coverage to codecov.io | |
run: bash <(curl -s https://codecov.io/bash) | |
shellcheck: | |
name: "Shellcheck" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Clone Repository" | |
uses: actions/checkout@v3 | |
- name: "Run ShellCheck" | |
uses: ludeeus/action-shellcheck@2.0.0 | |
with: | |
severity: warning |