This commit is contained in:
@@ -6,13 +6,16 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: gitea
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check environment
|
- name: Install Python with timeout
|
||||||
run: |
|
run: |
|
||||||
whoami
|
timeout 120 apt-get update || echo "apt-get update timed out or failed"
|
||||||
pwd
|
timeout 120 apt-get install -y python3 python3-pip || echo "apt-get install timed out or failed"
|
||||||
python3 --version || echo "Python not found"
|
- name: Verify Python
|
||||||
|
run: |
|
||||||
|
python3 --version
|
||||||
|
pip3 --version
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
run: |
|
run: |
|
||||||
pip3 install -e ".[dev]"
|
pip3 install -e ".[dev]"
|
||||||
|
|||||||
Reference in New Issue
Block a user