fix: move to src dir to satisfy python build #229
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: | |
push: | |
branches: | |
- "master" | |
paths: | |
- ".github/workflows/test.yml" | |
- "**/*.py" | |
- "poetry.lock" | |
- "pyproject.toml" | |
- "config.ini.example" | |
pull_request: | |
paths: | |
- ".github/workflows/test.yml" | |
- "**/*.py" | |
- "poetry.lock" | |
- "pyproject.toml" | |
- "config.ini.example" | |
jobs: | |
lint: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: pre-commit/[email protected] | |
env: | |
RUFF_OUTPUT_FORMAT: github | |
test: | |
needs: lint | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install dependencies | |
run: pip install .[dev,tests] | |
- name: Run Pytest | |
env: | |
TEST_CMC_API_KEY: ${{ secrets.TEST_CMC_API_KEY }} | |
run: pytest -vv --cov=./ --cov-report=xml tests/ | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run Bandit | |
run: bandit ./waybar_crypto.py |