Skip to content

fix: try stackrox container #566

fix: try stackrox container

fix: try stackrox container #566

Workflow file for this run

name: Workflow for Codecov example-python
on: [push, pull_request]
jobs:
run:
container:

Check failure on line 5 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Workflow for Codecov example-python

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 5, Col: 5): Required property is missing: runs-on
image: quay.io/stackrox-io/apollo-ci:stackrox-test-0.3.61
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
flags: smart-tests
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}