Remove custom case for black powder revolver in result page #1172
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: CI for pr | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
workflow_dispatch: | |
jobs: | |
tag-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Tag PR | |
uses: release-drafter/release-drafter@v5 | |
with: | |
name: PR ${{ github.ref }} | |
prerelease: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
build-backend: | |
name: Build Backend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./backend | |
push: true | |
tags: ghcr.io/dnum-mi/basegun/basegun-backend:${{ github.head_ref }} | |
build-frontend: | |
name: Build Frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-qemu-action@v3 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./frontend | |
push: true | |
tags: ghcr.io/dnum-mi/basegun/basegun-frontend:${{ github.head_ref }} | |
test-backend: | |
name: Test Backend | |
needs: build-backend | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/dnum-mi/basegun/basegun-backend:${{ github.head_ref }} | |
env: | |
AWS_REGION: gra | |
AWS_DEFAULT_REGION: gra | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
S3_URL_ENDPOINT: https://s3.gra.io.cloud.ovh.net/ | |
S3_BUCKET_NAME: basegun-s3 | |
steps: | |
- run: cd /app && pytest | |
test-e2e: | |
name: Run E2E tests | |
needs: [build-backend, build-frontend] | |
uses: ./.github/workflows/test-e2e.yml |