Skip to content

use project_name_raw to generated random code (#60) #129

use project_name_raw to generated random code (#60)

use project_name_raw to generated random code (#60) #129

Workflow file for this run

name: Run tests and code-cov
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11 # Choose your Python version
- name: Cache Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install main dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install development dependencies
run: pip install -r requirements-dev.txt
- name: Run pytest
run: python -m pytest -vvv
- name: Generate Code Coverage Reports
run: coverage run -m pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}