refactor workflows to allow migration from ecr to ghcr and onto gihthub hosted runner #24
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: 🧪 Test | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# - name: Set Up Container Structure Test | |
# id: setup_container_structure_test | |
# uses: ministryofjustice/github-actions/setup-container-structure-test@ccf9e3a4a828df1ec741f6c8e6ed9d0acaef3490 # v18.5.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Install Docker Compose | |
id: docker-compose | |
shell: bash | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
sudo curl -L "https://github.com/docker/compose/releases/download/v2.21.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose | |
docker-compose --version | |
- name: Build with Docker Compose | |
id: build | |
shell: bash | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
make build | |
docker image ls | |
- name: Run tests | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
docker image ls | |
make test-python |