Skip to content

Commit fe71ee3

Browse files
committed
move ci to github actions
1 parent 7980072 commit fe71ee3

File tree

4 files changed

+20
-36
lines changed

4 files changed

+20
-36
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, macos-latest, windows-latest]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: actions/checkout@v6
15+
- uses: actions/setup-go@v6
16+
with:
17+
go-version-file: go.mod
18+
- run: go test -v -race ./...

.gitlab-ci.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# smaug
22

3-
[![build status](https://git.itch.ovh/itchio/smaug/badges/master/build.svg)](https://git.itch.ovh/itchio/smaug/commits/master)
4-
[![codecov](https://codecov.io/gh/itchio/smaug/branch/master/graph/badge.svg)](https://codecov.io/gh/itchio/smaug)
3+
[![CI](https://github.com/itchio/smaug/actions/workflows/test.yml/badge.svg)](https://github.com/itchio/smaug/actions/workflows/test.yml)
54
[![Go Report Card](https://goreportcard.com/badge/github.com/itchio/smaug)](https://goreportcard.com/report/github.com/itchio/smaug)
6-
[![GoDoc](https://godoc.org/github.com/itchio/smaug?status.svg)](https://godoc.org/github.com/itchio/smaug)
5+
[![Go Reference](https://pkg.go.dev/badge/github.com/itchio/smaug.svg)](https://pkg.go.dev/github.com/itchio/smaug)
76
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/itchio/smaug/blob/master/LICENSE)
87

98
smaug contains utilities for running processes:

scripts/ci.sh

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)