Update CI/CD (major) #494
Workflow file for this run
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: Analytics Checks | |
on: | |
workflow_call: | |
pull_request: | |
paths: | |
- analytics/** | |
- .github/workflows/ci-analytics.yml | |
defaults: | |
run: | |
working-directory: ./analytics | |
jobs: | |
lint-test: | |
name: Analytics Lint, Format & Tests | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN_PROJECT_ACCESS }} | |
ANALYTICS_SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
ANALYTICS_REPORTING_CHANNEL_ID: ${{ secrets.REPORTING_CHANNEL_ID_TEST }} | |
ACTION: show-results # show results, but don't post them to slack | |
steps: | |
# set up python | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
# install poetry | |
- uses: Gr1N/setup-poetry@v9 | |
- name: Install analytics package using poetry | |
run: make install | |
- name: Check formatters | |
run: make format-check | |
- name: Run linting | |
run: make lint | |
- name: Run tests | |
run: make test-audit | |
# Both of these tasks are looking for github and slack auth | |
# - name: Export GitHub data | |
# run: make gh-data-export | |
# - name: Run reports | |
# run: make sprint-reports | |
vulnerability-scans: | |
name: Run Analytics Vulnerability Scans | |
uses: ./.github/workflows/vulnerability-scans.yml | |
with: | |
app_name: "analytics" |