Skip to content

Commit

Permalink
go1.20, codeowners & GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
elsesiy committed Jun 26, 2023
1 parent 6a99317 commit 50dd3a6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @elsesiy
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: ci
on:
pull_request:
jobs:
ci_job:
name: test
runs-on: ubuntu-22.04
container:
image: golang:1.20
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: go test -count=1 -v -short -race -timeout 30s ./...
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18 AS build-env
FROM golang:1.20 AS build-env

WORKDIR /qrgo
COPY main.go go.mod go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/elsesiy/qrgo

go 1.18
go 1.20

require github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e

1 comment on commit 50dd3a6

@vercel
Copy link

@vercel vercel bot commented on 50dd3a6 Jun 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

qrgo – ./

qrgo-git-master-elsesiy.vercel.app
qrgo.elsesiy.com
qrgo-elsesiy.vercel.app

Please sign in to comment.