CI: update action versions #45
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: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Go (with cache) | |
uses: actions/setup-go@v5 | |
with: { go-version-file: 'go.mod' } | |
- name: Setup Docker (with cache) | |
uses: ScribeMD/[email protected] | |
with: | |
key: docker-${{ runner.os }}-${{ hashFiles('.ci/docker-compose.yml') }} | |
- name: Prepare Environment | |
run: make reset | |
- name: Run Tests | |
run: make testacc |