Skip to content

Bump androidx.annotation:annotation from 1.7.1 to 1.8.0 #834

Bump androidx.annotation:annotation from 1.7.1 to 1.8.0

Bump androidx.annotation:annotation from 1.7.1 to 1.8.0 #834

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
workflow_dispatch: {} # support manual runs
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- uses: bufbuild/buf-setup-action@v1
with:
github_token: ${{ github.token }}
- name: Generate proto files for project
run: make generate
- name: Print diff
run: git diff
- name: Ensure no generated diff
run: |
git update-index --refresh --add --remove
git diff-index --quiet HEAD --
- name: Build project
run: make build
- name: Verify local release
run: make releaselocal
conformance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- uses: bufbuild/buf-setup-action@v1
with:
github_token: ${{ github.token }}
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run conformance tests
run: make runconformance
license-headers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-go-
- name: Check license headers
run: |
make licenseheaders
git update-index --refresh --add --remove
git diff-index --quiet HEAD --
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- uses: bufbuild/buf-setup-action@v1
with:
github_token: ${{ github.token }}
- name: Run tests
run: make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- uses: bufbuild/buf-setup-action@v1
with:
github_token: ${{ github.token }}
- name: Run lint
run: make lint