pdf_auralia/.gitea/workflows/hello.yaml
Bertrand Benjamin 693849db7a
Some checks failed
Gitea Actions Demo / Hello-Gitea-Actions (push) Failing after 21s
Fix: change python version
2023-06-27 11:03:57 +02:00

20 lines
564 B
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Hello-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: https://github.com/actions/setup-python@v4
with:
python-version: '3.10'
- name: Run image
uses: https://github.com/abatilo/actions-poetry@v2
with:
poetry-version: 1.5
- name: View poetry --help
run: poetry --help