Skip to content

fix: give it quotes #347

fix: give it quotes

fix: give it quotes #347

Workflow file for this run

name: Workflow for Codecov Action
on: [push, pull_request]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install python dependencies
run: pip install -r app/requirements.txt
- name: Run ATS
uses: ./
with:
folders_to_exclude: node_modules
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CODECOV_STATIC_TOKEN: ${{ secrets.CODECOV_STATIC_TOKEN }}
- name: Run Tests and collect coverage
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
- name: Upload to Codecov
uses: codecov/codecov-action@v4-beta
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
flags: smart-tests
plugins: pycoverage,compress-pycoverage