1
0

Bumped pipelines
Some checks failed
Test and Package Python / Test (push) Successful in 21s
Test and Package Python / Package (push) Failing after 21s

This commit is contained in:
Jon Michael Aanes 2024-05-27 21:53:40 +02:00
parent f756f41e70
commit eb03262bf3
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
4 changed files with 16 additions and 7 deletions

View File

@ -1,14 +1,14 @@
name: Python Package
name: Test and Package Python
on: [push]
jobs:
Python-Test:
Test:
uses: jmaa/workflows/.gitea/workflows/python-test.yaml@v6.21
Python-Package:
Package:
uses: jmaa/workflows/.gitea/workflows/python-package.yaml@v6.21
secrets:
PIPY_REPO_USER: ${{ secrets.PIPY_REPO_USER }}
PIPY_REPO_PASS: ${{ secrets.PIPY_REPO_PASS }}
with:
REGISTRY_DOMAIN: gitfub.space
REGISTRY_ORGANIZATION: jmaa
secrets:
PIPY_REPO_USER: ${{ secrets.PIPY_REPO_USER }}
PIPY_REPO_PASS: ${{ secrets.PIPY_REPO_PASS }}

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
enforce-typing
aenum

1
requirements_test.txt Normal file
View File

@ -0,0 +1 @@
pytest

View File

@ -1,11 +1,17 @@
#!/usr/bin/env python
#
# WARNING
#
# THIS IS AN AUTOGENERATED FILE.
#
# MANUAL CHANGES CAN AND WILL BE OVERWRITTEN.
import re
from setuptools import setup
PACKAGE_NAME = 'socials_util'
with open('README.md') as f:
readme = f.read()