Skip to content

Only expose props we need from usergroup list to initial state (#37) #65

Only expose props we need from usergroup list to initial state (#37)

Only expose props we need from usergroup list to initial state (#37) #65

Workflow file for this run

name: Go-test
on:
push:
branches: [ develop ]
pull_request:
types: [opened, synchronize, edited]
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Basic checks before building and testing
run: ./run_basic_checks.sh
- name: Build
run: go build -v ./...
- name: Disabled local tests
run: echo "this should pass when running go test -v ./..."
- name: Run tests w.o. failing server build
run: go test -v $(go list ./... | grep -v github.com/resonatecoop/id/oauth)