Merge pull request #2855 from cal-itp/ci-cleanup #23
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: Test, visualize, and build calitp-data-analysis | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '.github/workflows/build-calitp-data-analysis.yml' | |
- 'packages/calitp-data-analysis/calitp_data_analysis/**' | |
pull_request: | |
paths: | |
- '.github/workflows/build-calitp-data-analysis.yml' | |
- 'packages/calitp-data-analysis/calitp_data_analysis/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
check_and_build: | |
name: check python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- uses: google-github-actions/setup-gcloud@v0 | |
with: | |
service_account_key: ${{ secrets.GCP_SA_KEY }} | |
export_default_credentials: true | |
- name: Run checks | |
working-directory: packages/calitp-data-analysis | |
run: | | |
curl -sSL https://install.python-poetry.org | python - | |
poetry install | |
poetry run mypy . | |
poetry run pytest | |
poetry build | |
# TODO: add publishing |