Skip to content

Update golang.org/x/exp digest to a685a6e #277

Update golang.org/x/exp digest to a685a6e

Update golang.org/x/exp digest to a685a6e #277

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main", "develop", "feature/*" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: "Build & Test in Docker"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
#- name: Build the Docker image
# run: docker build . --file Dockerfile --tag algorithm-exercises-go:${{ github.sha }}
- name: Build the Docker image
run: make compose/rebuild
- name: Run test in Docker image
run: make compose/run
- name: Tag Docker image
run: docker tag algorithm-exercises-go:latest algorithm-exercises-go:${{ github.sha }}