Skip to content

Bump github.com/open-policy-agent/opa from 0.64.1 to 0.65.0 #64

Bump github.com/open-policy-agent/opa from 0.64.1 to 0.65.0

Bump github.com/open-policy-agent/opa from 0.64.1 to 0.65.0 #64

Workflow file for this run

name: PR Check
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build (Linux)
run: make build
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Unit Test
run: make test
lint:
name: Go Lint
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Golang Style and Lint Check
run: make check