2023-06-27 08:40:15 +00:00
|
|
|
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
|
2023-06-27 09:02:11 +00:00
|
|
|
- name: Set up Python 3.10
|
|
|
|
uses: https://github.com/actions/setup-python@v4
|
|
|
|
with:
|
2023-06-27 09:03:57 +00:00
|
|
|
python-version: '3.10'
|
2023-06-27 09:02:11 +00:00
|
|
|
- name: Run image
|
|
|
|
uses: https://github.com/abatilo/actions-poetry@v2
|
|
|
|
with:
|
|
|
|
poetry-version: 1.5
|
|
|
|
- name: View poetry --help
|
|
|
|
run: poetry --help
|