Skip to content

Commit

Permalink
Merge pull request #102 from zalando/fix/ci-status
Browse files Browse the repository at this point in the history
fix: ci status badge used travis-ci link which we do not use anymore
  • Loading branch information
szuecs authored Apr 3, 2024
2 parents 03633db + c237320 commit 5ac3df5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: master
on:
push:
branches:
- master
permissions: {}
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
with:
# https://www.npmjs.com/package/semver#caret-ranges-123-025-004
go-version: '^1.21'
check-latest: true
- run: go version
- run: go vet ./github ./google ./zalando
- run: go test ./...
- run: go test -race ./...
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Gin-OAuth2

[![Go Report
Card](https://goreportcard.com/badge/zalando/gin-oauth2)](https://goreportcard.com/report/zalando/gin-oauth2) [![Build Status](https://travis-ci.org/zalando/gin-oauth2.svg?branch=master)](https://travis-ci.org/zalando/gin-oauth2) [![GoDoc](https://godoc.org/github.com/zalando/gin-oauth2?status.svg)](https://godoc.org/github.com/zalando/gin-oauth2)
Card](https://goreportcard.com/badge/zalando/gin-oauth2)](https://goreportcard.com/report/zalando/gin-oauth2)
[![Build Status](https://github.com/zalando/gin-oauth2/actions/workflows/master.yaml/badge.svg)](https://github.com/zalando/gin-oauth2/actions/workflows/master.yaml)
[![GoDoc](https://pkg.go.dev/github.com/zalando/gin-oauth2?status.svg)](https://pkg.go.dev/github.com/zalando/gin-oauth2)


Gin-OAuth2 is specially made for [Gin Framework](https://github.com/gin-gonic/gin)
Expand Down

0 comments on commit 5ac3df5

Please sign in to comment.