Skip to content

try to activate admin-api feature #12

try to activate admin-api feature

try to activate admin-api feature #12

Workflow file for this run

name: Integration Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
- name: Build
run: cargo build
- name: Run unit tests
run: cargo test
- name: Run integration tests
run: |
docker run -p 8080:8080 --name keycloak -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=password -e KC_FEATURES=admin-api quay.io/keycloak/keycloak:24.0.2 start-dev &
sleep 40
cargo run --example=adduser