ci: debug
Some checks failed
Explore-GitHub-Actions

This commit is contained in:
cătălin 2023-04-07 17:49:03 +02:00
commit 712537fa6b
Signed by: catalin
GPG key ID: 686088EF78EE4083

View file

@ -1,20 +1,21 @@
name: Gitea Actions Demo name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀 run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [ push ] on: [ push ]
description:
runs:
jobs: jobs:
Explore-GitHub-Actions: Explore-GitHub-Actions:
runs-on: mail runs-on: mail
container: container:
image: python:3.10-bullseye image: python:3.10-bullseye
steps: steps:
- name: checkout
uses: actions/checkout@v3
with:
repository: https://git.roboces.dev/catlain/halig
- run: apt update -y - run: apt update -y
- run: apt upgrade -y - run: apt upgrade -y
- run: apt install -y git make - run: apt install -y git make
- run: pip install --upgrade pip pdm - run: pip install --upgrade pip pdm
- run: git clone https://git.roboces.dev/catalin/halig - run: git clone https://git.roboces.dev/catalin/halig
- run: cd halig
- run: pdm install -G :all - run: pdm install -G :all
- run: make tests - run: make tests
- run: make linters - run: make linters