diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 43ac346..b4a2d56 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -5,6 +5,9 @@ jobs: focal-like: runs-on: ubuntu-20.04 steps: + - name: Introspection + run: | + echo "The job is running by ${{ gitea.actor }} on a ${{ runner.os }} server host" - name: Install dependencies run: | apt-get update @@ -22,14 +25,17 @@ jobs: jammy-like: runs-on: ubuntu-latest steps: - - name: Install dependencies + - name: Introspection run: | - apt-get update - apt-get install -yq --no-install-suggests --no-install-recommends \ - python3-dev python3-pip python3-venv python-is-python3 - pip install setuptools wheel - pip install --upgrade pip tox virtualenv - - name: Check out repository code - uses: actions/checkout@v3 - - name: Run tests - run: tox + echo "The job is running by ${{ gitea.actor }} on a ${{ runner.os }} server host" + # - name: Install dependencies + # run: | + # apt-get update + # apt-get install -yq --no-install-suggests --no-install-recommends \ + # python3-dev python3-pip python3-venv python-is-python3 + # pip install setuptools wheel + # pip install --upgrade pip tox virtualenv + # - name: Check out repository code + # uses: actions/checkout@v3 + # - name: Run tests + # run: tox