feat: soil id endpoints #3409
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: build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- staging | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12.3" | |
- name: Install Python dependencies for CI | |
run: | | |
pip install -r requirements-dev.txt | |
- name: Build base Docker image | |
run: | | |
cp .env.sample .env | |
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env | |
make build DC_ENV=ci | |
- name: Run lint checks | |
run: | | |
make lint | |
build-and-test: | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build base Docker image | |
run: | | |
cp .env.sample .env | |
echo "SENTRY_DSN=${{ secrets.SENTRY_DSN }}" >> .env | |
make build DC_ENV=ci | |
- name: Run tests using built Docker image | |
run: | | |
make test-ci DC_ENV=ci |