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
1 changed files with 16 additions and 10 deletions

View File

@ -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