removed partytown and the analytics we store as there is no real valu… #2341
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: Data CI/CD | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ opened, reopened, synchronize ] | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
data-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ "3.12" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install -r data/requirements.txt -r requirements-dev.txt | |
- run: pytest data | |
#type-check: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
#- name: Set up Python ${{ matrix.python-version }} | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# - name: Install dependencies | |
# run: pip install -r data/requirements.txt -r requirements-dev.txt | |
# - name: Run mypy | |
# run: mypy --strict data | |
data-build: | |
needs: | |
- data-test | |
uses: ./.github/workflows/_docker-build.yml | |
with: | |
image_suffix: data | |
context: ./data | |
dockerfile: Dockerfile | |
permissions: | |
contents: read | |
packages: write | |
data-deployment-1: | |
uses: ./.github/workflows/_restart-argocd.yml | |
if: ${{ github.ref }} == 'refs/heads/main' | |
needs: | |
- data-build | |
with: | |
deployment: data | |
secrets: | |
ARGOCD_TOKEN: ${{ secrets.ARGOCD_TOKEN }} | |
data-deployment-2: # we need to restart the server, as otherwise it will not serve the new data | |
uses: ./.github/workflows/_restart-argocd.yml | |
if: ${{ github.ref }} == 'refs/heads/main' | |
needs: | |
- data-deployment-1 | |
with: | |
deployment: server | |
secrets: | |
ARGOCD_TOKEN: ${{ secrets.ARGOCD_TOKEN }} |