Skip to content

Add access tests using shared-key for auth #2

Add access tests using shared-key for auth

Add access tests using shared-key for auth #2

name: Test access to Sumo with DROGON-MANAGE shared-key
on:
pull_request:
branches: [main]
schedule:
- cron: "48 4 * * *"
workflow_dispatch:
jobs:
build_pywheels:
name: PY ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
permissions:
contents: read
id-token: write
steps:

Check failure on line 22 in .github/workflows/run_tests_access_drogon_manage_sharedkey.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/run_tests_access_drogon_manage_sharedkey.yaml

Invalid workflow file

You have an error in your yaml syntax on line 22
environment: dev
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install fmu-sumo
run: >
python -m pip install --upgrade pip &&
python -m pip install .[test]
- name: Run tests
shell: bash
run: |
pip list | grep -i sumo
key: ${{secrets.SHARED_KEY_DROGON_MANAGE_DEV}}
echo "$key" > ~/.sumo/88d2b022-3539-4dda-9e66-853801334a86.sharedkey
ls -l ~/.sumo/88d2b022-3539-4dda-9e66-853801334a86.sharedkey
cat ~/.sumo/88d2b022-3539-4dda-9e66-853801334a86.sharedkey
pytest -s --timeout=300 tests/test_access/tst_access_drogon_manage_login.py