Compare commits

3 Commits

Author SHA1 Message Date
0923a6e6a6 add version command
All checks were successful
Test suites / test-build-install (pull_request) Successful in 28s
Test suites / selftest (pull_request) Successful in 1m0s
Test suites / pylint (pull_request) Successful in 34s
Test suites / formatting (pull_request) Successful in 29s
Test suites / mypy (pull_request) Successful in 29s
Test suites / reuse (pull_request) Successful in 7s
2024-01-16 16:09:19 +01:00
9f910ae9f2 fix pylint by igoring some errors 2024-01-16 16:09:19 +01:00
7b3f0a9418 add CI tests and publishing workflows 2024-01-16 16:09:19 +01:00
8 changed files with 47 additions and 80 deletions

View File

@@ -3,17 +3,11 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
name: "Reusable Poetry build workflow" name: "Reusable Poetry build workflow"
inputs:
poetry_install_args:
default: ""
description: "Value for additional poetry install arguments"
required: false
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Install poetry - name: Install dependencies
run: pip install poetry run: |
- name: Install poetry package pip install poetry
run: poetry install --no-interaction ${{ inputs.poetry_install_args }} poetry install --no-interaction
shell: bash shell: bash

View File

@@ -1,41 +0,0 @@
# SPDX-FileCopyrightText: 2023 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: Apache-2.0
name: Python Linters
on:
push:
branches:
- main
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: ./.gitea/actions/poetrybuild
- name: Lint with pylint
run: poetry run pylint seafile_mirror
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: ./.gitea/actions/poetrybuild
- name: Test formatting with isort and black
run: |
poetry run isort --check seafile_mirror/
poetry run black .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: ./.gitea/actions/poetrybuild
- name: Test typing with mypy
run: poetry run mypy

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

@@ -1,19 +0,0 @@
# SPDX-FileCopyrightText: 2023 Max Mehl <https://mehl.mx>
#
# SPDX-License-Identifier: Apache-2.0
name: REUSE Compliance
on:
push:
branches:
- main
pull_request:
jobs:
reuse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check REUSE Compliance
uses: https://github.com/fsfe/reuse-action@v2

View File

@@ -3,7 +3,7 @@
# #
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
name: Selftests name: Test suites
on: on:
push: push:
@@ -29,15 +29,12 @@ 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
- name: Install dependencies - name: Install dependencies
uses: ./.gitea/actions/poetrybuild uses: ./.gitea/actions/poetrybuild
# using minimal set of dependencies
with:
poetry_install_args: "--without dev"
- name: Install seaf-cli - name: Install seaf-cli
run: | run: |
apt-get update apt-get update
@@ -55,3 +52,41 @@ jobs:
run: poetry run seafile-mirror -c tests -v run: poetry run seafile-mirror -c tests -v
- name: Attempt to find expected string in library - name: Attempt to find expected string in library
run: grep "__ci_test_expect__" tests/ci-test/testfile.txt run: grep "__ci_test_expect__" tests/ci-test/testfile.txt
# PYLINT / BLACK / ISORT / MYPY
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: ./.gitea/actions/poetrybuild
- name: Lint with pylint
run: poetry run pylint seafile_mirror
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: ./.gitea/actions/poetrybuild
- name: Test formatting with isort and black
run: |
poetry run isort --check seafile_mirror/
poetry run black .
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
uses: ./.gitea/actions/poetrybuild
- name: Test typing with mypy
run: poetry run mypy
# REUSE COMPLIANCE
reuse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check REUSE Compliance
uses: https://github.com/fsfe/reuse-action@v2

1
.gitignore vendored
View File

@@ -8,4 +8,3 @@ venv/
/seafile_mirror.conf.yaml /seafile_mirror.conf.yaml
__pycache__/ __pycache__/
*.log *.log
tests/ci-test/

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"

View File

@@ -2,8 +2,7 @@
# #
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
# Configuration file for seafile-mirror which will be filled in and applied in # Example configuration file for seafile-mirror
# the CI test
- server: __seafile_server__ - server: __seafile_server__
user: __seafile_user__ user: __seafile_user__
password: __seafile_pass__ password: __seafile_pass__