Files
pdf2text/.gitea/workflows/test.yaml
T
retoor 969ef8b270 feat: replace broken shell command with echo in test workflow
The CI test workflow previously attempted to run an invalid shell command
"Check if starts correcly. Syntax check." which would fail. This commit
replaces it with a safe echo statement that prints the same message,
allowing the pipeline to proceed to subsequent steps.
2024-11-22 19:51:10 +00:00

21 lines
607 B
YAML

name: pdf2text test
run-name: syntax check
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "Install dependencies."
- run: apt update
- run: apt install python3 python3-pip python3-venv -y
- run: python3 -m pip install -r requirements.txt
- run: echo "Check if starts correcly. Syntax check."
- run: ./pdf2text .
- run: echo "This job's status is ${{ job.status }}."