chore: Move init.sql files out of seed-scripts (#1398)
#1670
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 fhir-converter Container | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| paths: | |
| - containers/fhir-converter/** | |
| merge_group: | |
| types: | |
| - checks_requested | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CONTAINER: fhir-converter | |
| jobs: | |
| build-container: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build ${{ env.CONTAINER }} Container | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./containers/${{ env.CONTAINER }} | |
| push: false | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |