Skip to content

Get group by name #2436

Get group by name

Get group by name #2436

Workflow file for this run

name: CI
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
build_test:
name: Build and Test
runs-on: ubuntu-22.04
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: sudo apt-get update -y && sudo apt-get install -y gcc git-core gnupg build-essential
- name: Install juju-db
run: sudo snap install juju-db --channel 4.4/stable
- name: Start test environment
run: docker compose up -d --wait
- name: Run OpenFGA authorisation model tests
uses: openfga/[email protected]
with:
store-file-path: ./openfga/tests.fga.yaml
- name: Build and Test
run: go test -mod readonly ./... -timeout 1h -cover