Skip to content

Fix issue with missing files from executable (#46) #166

Fix issue with missing files from executable (#46)

Fix issue with missing files from executable (#46) #166

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/setup.cfg'
# This is needed for compiling wxwidgets
- name: Install gtk3
run: |
sudo apt update
sudo apt install libgtk-3-dev
- name: Install dependencies
run: |
python -m venv venv
venv/bin/python -m pip install --upgrade pip setuptools
venv/bin/python -m pip install -e .[dev]
- name: Test with pytest
run: |
venv/bin/pytest --cov=objdictgen --cov-report=xml --cov-branch -p no:logging --tb=no
# - name: Upload coverage reports to Codecov
# uses: codecov/[email protected]
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# slug: Laerdal/python-objdictgen
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}