pdf_auralia/.gitea/workflows/hello.yaml
Bertrand Benjamin 90e16988ce
Some checks failed
Gitea Actions Demo / Hello-Gitea-Actions (push) Failing after 21s
Fix: python version
2023-06-27 11:05:44 +02:00

20 lines
567 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.12'
- name: Run image
uses: https://github.com/abatilo/actions-poetry@v2
with:
poetry-version: 1.5
- name: View poetry --help
run: poetry --help