Run cleanup after tests #95
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build and Setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/ci/build | |
acc_test: | |
name: Acceptance Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Repo | |
uses: ./.github/actions/ci/setup | |
- name: Install Descope CLI | |
uses: descope/descopecli/.github/actions/install@v0.8.10 | |
- name: Run Acceptance Tests | |
shell: bash | |
env: | |
DESCOPE_PROJECT_ID: ${{ secrets.DESCOPE_PROJECT_ID }} | |
DESCOPE_MANAGEMENT_KEY: ${{ secrets.DESCOPE_MANAGEMENT_KEY }} | |
DESCOPE_BASE_URL: https://api.descope.com | |
TF_ACC: 1 | |
run: | | |
set +e | |
go test -v ./... | |
result="$?" | |
descope project list | grep '"name":"testacc-.*' | sed -e 's/.*"id":"\([^"]*\)".*/\1/' | xargs -I {} descope project delete {} --force | |
if [ "$result" != "0" ]; then | |
echo "Acceptance tests failed" | |
exit 1 | |
fi | |
lint: | |
name: Run Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Run Linter | |
uses: ./.github/actions/ci/lint | |
leaks: | |
name: Check Leaks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check Leaks | |
uses: ./.github/actions/ci/leaks | |
with: | |
gitleaks_license: ${{ secrets.GITLEAKS_LICENSE }} |