Skip to content

all: update descriptor.proto to latest version #41

all: update descriptor.proto to latest version

all: update descriptor.proto to latest version #41

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: TestLatest
if: matrix.go-version == '1.16.x'
run: ./test.bash
- name: TestAll
if: matrix.go-version != '1.16.x'
run: go test ./...