Skip to content

Commit

Permalink
Merge pull request #106 from kolyshkin/go1.18rc
Browse files Browse the repository at this point in the history
ci: add go 1.18, drop 1.16
  • Loading branch information
thaJeztah committed Apr 12, 2022
2 parents d75da0c + a7c7190 commit 523ebb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
go-version: [1.17.x, 1.18.x]
platform: [ubuntu-20.04, windows-latest, macos-11]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Lint
run: make lint
- name: Cross build
Expand All @@ -27,7 +27,7 @@ jobs:
# nested virtualization is only available on macOS hosts
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: prepare vagrant
run: |
ln -sf .ci/Vagrantfile.fedora Vagrantfile
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ lint: $(BINDIR)/golangci-lint
done

$(BINDIR)/golangci-lint: $(BINDIR)
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINDIR) v1.43.0
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BINDIR) v1.45.2

$(BINDIR):
mkdir -p $(BINDIR)
Expand Down

0 comments on commit 523ebb9

Please sign in to comment.