added python setup action
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 26s Details

This commit is contained in:
Sven Vogel 2024-07-19 09:36:48 +02:00
parent cc56ccecd7
commit b827520692
1 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,8 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install Typst CLI - name: Install Typst CLI
run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION" run: curl -fsSL https://typst.community/typst-install/install.sh | sh -s "$TYPST_VERSION"
- name: Set up Python 3 - uses: actions/setup-python@v5
run: apt update -y && apt install python3-pip -y with:
python-version: '3.11'
- name: Run CI - name: Run CI
run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh run: export PATH="$TYPST_INSTALL/bin:$PATH" && bash -c ./run-ci.sh