Skip to content

Commit

Permalink
.github: use github actions to run 32-bit linux tests (#28549)
Browse files Browse the repository at this point in the history
use github actions to run 32-bit linux tests
  • Loading branch information
gballet authored Dec 5, 2023
1 parent b8d44ed commit 69576df
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: i386 linux tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4
- name: Run tests
run: go test ./...
env:
GOOS: linux
GOARCH: 386

0 comments on commit 69576df

Please sign in to comment.