Skip to content

Commit

Permalink
update github actions setup (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
alicebob authored Nov 6, 2022
1 parent e5e64fb commit e70d444
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14', '1.17', '1.18', '1.19' ]
name: Go ${{ matrix.go }}
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}

- name: Install Redis
run: (cd ./integration && ./get_redis.sh)

- name: Test
run: make test testrace int

0 comments on commit e70d444

Please sign in to comment.