Skip to content

Fix github action and test scripts. #95

Fix github action and test scripts.

Fix github action and test scripts. #95

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
- name: Run tests
run: python3 -m pytest -s
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4