Compare commits

4 Commits

Author SHA1 Message Date
83d6d30366 split workflows
All checks were successful
Python Linters / pylint (pull_request) Successful in 32s
Python Linters / formatting (pull_request) Successful in 27s
Python Linters / mypy (pull_request) Successful in 26s
REUSE Compliance / reuse (pull_request) Successful in 6s
Selftests / test-build-install (pull_request) Successful in 29s
Selftests / selftest (pull_request) Successful in 52s
2024-01-16 16:34:56 +01:00
d15cb7bf63 add version command
All checks were successful
Test suites / test-build-install (pull_request) Successful in 27s
Test suites / selftest (pull_request) Successful in 51s
Test suites / pylint (pull_request) Successful in 33s
Test suites / formatting (pull_request) Successful in 27s
Test suites / mypy (pull_request) Successful in 29s
Test suites / reuse (pull_request) Successful in 7s
2024-01-16 16:28:42 +01:00
d54fcd5943 fix pylint by igoring some errors 2024-01-16 16:28:42 +01:00
272fef4ec0 add CI tests and publishing workflows 2024-01-16 16:28:42 +01:00
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Build and publish to PyPI - name: Build and publish to pypi
uses: https://github.com/JRubics/poetry-publish@v1.17 uses: https://github.com/JRubics/poetry-publish@v1.17
with: with:
pypi_token: ${{ secrets.PYPI_TOKEN }} pypi_token: ${{ secrets.PYPI_TOKEN }}

View File

@@ -29,7 +29,7 @@ jobs:
seafile-mirror --help seafile-mirror --help
# Run tool and sync a test library # Run tool and sync a test library
test-sync: selftest:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@@ -4,7 +4,7 @@
[tool.poetry] [tool.poetry]
name = "seafile-mirror" name = "seafile-mirror"
version = "0.2.0" version = "0.1.0"
description = "Handle clean read-only (re-)syncs of Seafile libraries to mirror them" description = "Handle clean read-only (re-)syncs of Seafile libraries to mirror them"
authors = ["Max Mehl <mail@mehl.mx>"] authors = ["Max Mehl <mail@mehl.mx>"]
license = "Apache-2.0" license = "Apache-2.0"