Print some info

This commit is contained in:
Lee Miller 2024-02-27 18:32:20 +02:00
parent a9a09120ea
commit 17522b8788
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63

View File

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