go-ethereum/.github/workflows/go.yml.bk
Rodin Velichkov 5c4504cf76 [Add Docker Image Build Workflow]
Details:
- Triggers when a PR with label CI:Build is merged
- Builds a new docker image of the given project
- Uploads it to dockerhub
- Move pre-existing workflow to .bk
2024-08-06 21:28:16 +03:00

24 lines
448 B
Text

name: i386 linux tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.4
cache: false
- name: Run tests
run: go test -short ./...
env:
GOOS: linux
GOARCH: 386