release 1.1.3 #1835
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
# This workflow use pytest: | |
# - Install Python dependencies. | |
# - Run pytest for each of the supported Python versions ["3.8", "3.9", "3.10"]. | |
# Running pytest with -m "no docker" to disable test that require a docker installation. | |
name: Pytest-Linux | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ "*" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
submodules: true | |
token: ${{ secrets.OXOTITAN_GITHUB_KEY }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5.0.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies. | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[testing] | |
pip install .[scanner] | |
pip install .[agent] | |
pip install .[serve] | |
python -m pip install -e . | |
- name: Running tests with pytest. | |
env: | |
RE_OXO_API_KEY: ${{ secrets.RE_OXO_API_KEY }} | |
run: | | |
set -o pipefail | |
pytest -m "not docker and not nats" --cov=./ --cov-report=xml:coverage.xml --cov-report=term-missing | |
- name: Upload coverage to Codecov. | |
uses: codecov/codecov-action@v4 | |
with: | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: coverage.xml |