name: build on: [push] env: BUILD_TYPE: Release jobs: build: runs-on: python-latest steps: - name: Clone Repo run: git clone https://repos.gmgauthier.com/gmgauthier/pytest-api.git . && ls -la - name: Prep Python Environment run: python -m pip install -r requirements.txt - name: Run Open Api Tests run: touch .env.gw && echo "API_URL=${{ vars.GAMMA_WORLD_API_URL }}" >> .env.gw && pytest -rA --durations=0 --color=auto --config-file=./pytest.ini -m rules && rm .env.gw - name: Run Oauth2 Api Tests run: touch .env.qa && echo "API_URL=${{ secrets.EDD_API_URL }}" >> .env.qa && echo "CLIENT_ID=${{ secrets.EDD_CLIENT_ID }}" >> .env.qa && echo "CLIENT_SECRET=${{ secrets.EDD_CLIENT_SECRET }}" >> .env.qa && echo "TOKEN_FETCH_URL=${{ secrets.EDD_TOKEN_FETCH_URL }}" >> .env.qa && echo "LOGIN=${{ secrets.EDD_QA_LOGIN }}" >> .env.qa && echo "PASSWORD=${{ secrets.EDD_QA_PWD }}" >> .env.qa && echo "AUDIENCE=${{ secrets.EDD_AUDIENCE }}" >> .env.qa && echo "SCOPES=${{ secrets.EDD_SCOPES }}" >> .env.qa && pytest -rA --durations=0 --color=auto --config-file=./pytest.ini -m get && rm .env.qa