ci: update pytest to use docker ci img #7
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
name: pytest | |
on: | |
# Run tests on all pushed branches | |
push: | |
branches: | |
- "*" | |
# Run tests on PR, prior to merge to main & development. | |
pull_request: | |
branches: | |
- main | |
# Allow manual trigger (workflow_dispatch) | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
environment: | |
name: ${{ github.ref_name }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start CI Container | |
run: > | |
docker run -d --name fmtm_pytest | |
-v "$GITHUB_WORKSPACE/fmtm_splitter:/home/appuser/.local/lib/python3.10/site-packages/fmtm_splitter" | |
-v "$GITHUB_WORKSPACE/tests:/home/appuser/tests" | |
-u root | |
ghcr.io/hotosm/fmtm-splitter:ci | |
sleep infinity | |
- name: Run PyTest as appuser | |
run: docker exec fmtm_pytest gosu appuser pytest |