19 lines
709 B
YAML
19 lines
709 B
YAML
|
|
name: Identity provider journey acceptance
|
||
|
|
on:
|
||
|
|
push:
|
||
|
|
branches: [main]
|
||
|
|
paths: ["identity-provisioner/**", ".forgejo/workflows/identity-journeys.yaml"]
|
||
|
|
workflow_dispatch:
|
||
|
|
jobs:
|
||
|
|
provider:
|
||
|
|
runs-on: self-hosted
|
||
|
|
steps:
|
||
|
|
- name: Test the exact commit
|
||
|
|
run: |
|
||
|
|
set -eu
|
||
|
|
mkdir -p identity-source
|
||
|
|
curl -fsSL "https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${GITHUB_SHA}.tar.gz" -o identity-source.tar.gz
|
||
|
|
tar xzf identity-source.tar.gz -C identity-source --strip-components=1
|
||
|
|
cd identity-source
|
||
|
|
PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=identity-provisioner python3 -m unittest discover -s identity-provisioner/tests -v
|