Merge pull request #4 from dbarrous/update-devcontainer-and-stub-code #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies and run tests in the docker container | ||
name: Testing in pipeline container | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: public.ecr.aws/w5r9l1c8/swsoc-docker-lambda-base:latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run tests | ||
run: pytest --pyargs padre_sharp --cov padre_sharp | ||
env: | ||
PLATFORM: 'docker' | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||