Merge pull request #354 from AndrewPaglusch/fix-ses-sender-header #553
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 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| env: | |
| BUILD_TAG: addy:test | |
| CONTAINER_NAME: addy | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Build | |
| uses: docker/bake-action@v6 | |
| with: | |
| source: . | |
| targets: image-local | |
| env: | |
| DEFAULT_TAG: ${{ env.BUILD_TAG }} | |
| - | |
| name: Generate DKIM private key | |
| run: | | |
| docker compose run --rm gen-dkim | |
| working-directory: test | |
| env: | |
| ANONADDY_IMAGE: ${{ env.BUILD_TAG }} | |
| ANONADDY_CONTAINER: ${{ env.CONTAINER_NAME }} | |
| - | |
| name: Start | |
| run: | | |
| docker compose up -d | |
| working-directory: test | |
| env: | |
| ANONADDY_IMAGE: ${{ env.BUILD_TAG }} | |
| ANONADDY_CONTAINER: ${{ env.CONTAINER_NAME }} | |
| - | |
| name: Check container logs | |
| uses: crazy-max/.github/.github/actions/container-logs-check@main | |
| with: | |
| container_name: ${{ env.CONTAINER_NAME }} | |
| log_check: "ready to handle connections" | |
| timeout: 120 | |
| - | |
| name: Logs | |
| if: always() | |
| run: | | |
| docker compose logs | |
| working-directory: test | |
| env: | |
| ANONADDY_IMAGE: ${{ env.BUILD_TAG }} | |
| ANONADDY_CONTAINER: ${{ env.CONTAINER_NAME }} |