remove environment config #90
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - ci/add-uv | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-dashboard: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: dagger/dagger-for-github@8.0.0 | |
| - name: Run Dashboard Tests | |
| run: dagger call test-dashboard | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: dagger/dagger-for-github@8.0.0 | |
| - name: Build Dashboard Docker image | |
| run: dagger call build-dashboard-container | |
| - name: Build Dashboard Service Docker image | |
| run: dagger call build-service-container | |
| - name: Build Storage Service Docker image | |
| run: dagger call build-storage-container |