Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 7e1b220

Browse files
author
Holger Lösken
committed
Add tests for go
1 parent 27eb73a commit 7e1b220

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/tests_go.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Tests Go
2+
on: [push]
3+
jobs:
4+
run:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
go-version: [1.15.x]
9+
steps:
10+
- name: Install Go
11+
uses: actions/setup-go@v2
12+
with:
13+
go-version: ${{ matrix.go-version }}
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
- name: Test
17+
run: go test src/go/t1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests
1+
name: Tests PHP
22
on: [push]
33
jobs:
44
run:

0 commit comments

Comments
 (0)