Skip to content

feat: add scopes list to otp email if it has a client (#63) #231

feat: add scopes list to otp email if it has a client (#63)

feat: add scopes list to otp email if it has a client (#63) #231

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Unit Tests On Push
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "unit-tests"
unit-tests:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: smarcet/openstackid_test:v1.0
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: 'Run Unit Tests'
run: cd / && ./tests.sh 2>&1 | tee /output.log
- name: 'Upload Unit Test Output'
uses: actions/upload-artifact@v3
with:
name: output
path: /output.log
retention-days: 5