This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
chore: split up tests #1604
Workflow file for this run
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: Linux-amd64 Docker build & push | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
build: | |
env: | |
REGISTRY: ghcr.io | |
IMAGENAME: ${{ github.event.repository.name }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Check out code | |
- name: Install Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.21.x | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run tests | |
run: mkdir frontend/dist && touch frontend/dist/tmp && go test ./... | |
- name: Docker build | |
uses: mr-smithers-excellent/docker-build-push@v6 | |
id: build | |
with: | |
image: ${{ env.IMAGENAME }} | |
registry: ${{ env.REGISTRY }} | |
platform: linux/amd64 | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
addLatest: ${{ github.ref == 'refs/heads/master' }} |