pdf2text/.gitea/workflows/test.yaml
retoor 92899c8438
Some checks failed
pdf2text test / Compile (push) Failing after 30s
What a noobie mistakes. Forgive me.
2024-11-22 20:48:37 +01:00

21 lines
602 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: "Check if starts correcly. Syntax check."
- run: ./pdf2text .
- run: echo "This job's status is ${{ job.status }}."