Skip to content

update workflow with codecov secret #101

update workflow with codecov secret

update workflow with codecov secret #101

Workflow file for this run

name: test
on: [pull_request, push, workflow_dispatch]
concurrency:
group: test-${{github.ref}}
cancel-in-progress: true
jobs:
# image:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout source
# uses: actions/checkout@v2
#
# - name: push image
# run: GITHUB_TOKEN=${{secrets.GITHUB_TOKEN}} make push-image
#
test:
runs-on: ubuntu-latest
# To create and push new image: make push-image
container: ghcr.io/twisted-fields/acorn_docker:latest
strategy:
fail-fast: true
steps:
- name: Checkout source
uses: actions/checkout@v4
with:

Check failure on line 29 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 29
token: ${{ secrets.CODECOV_TOKEN }}
- name: Run tests
run: python3 -m pytest -s
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4