Fix CEL types for repeated field item expressions (#92) #226
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Conformance | |
on: | |
pull_request: | |
push: | |
tags: | |
- 'v*.*.*' | |
branches: | |
- 'main' | |
permissions: | |
contents: read | |
jobs: | |
go: | |
name: Go | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [ 'stable', 'oldstable' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test conformance | |
run: make conformance |