-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from spraakbanken/33-rename-project-to-inclue-…
…model-name rename project
- Loading branch information
Showing
25 changed files
with
1,421 additions
and
940 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
name: release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- 'ocr-correction-viklofg-sweocr-v[0-9]+.[0-9]+.[0-9]+' | ||
pull_request: | ||
merge_group: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
permissions: | ||
contents: read | ||
|
||
env: | ||
MINIMUM_PYTHON_VERSION: "3.9" | ||
|
||
jobs: | ||
build: | ||
# This action builds distribution files for upload to PyPI | ||
|
||
name: ubuntu / 3.9 / build | ||
runs-on: ubuntu-latest | ||
steps: | ||
#---------------------------------------------- | ||
# check-out repo and set-up python | ||
#---------------------------------------------- | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
#---------------------------------------------- | ||
# ----- setup python ----- | ||
#---------------------------------------------- | ||
- name: Set up the environment | ||
uses: pdm-project/setup-pdm@v4 | ||
id: setup-python | ||
with: | ||
python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | ||
|
||
#---------------------------------------------- | ||
# ----- build distribution ----- | ||
#---------------------------------------------- | ||
- name: Build distribution | ||
run: cd ocr-correction-viklofg-sweocr && make build | ||
|
||
#---------------------------------------------- | ||
# ----- upload artifacts ----- | ||
#---------------------------------------------- | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pypi_files | ||
path: ocr-correction-viklofg-sweocr/dist | ||
|
||
test-build: | ||
# This action runs the test suite on the built artifact in the `build` action. | ||
# The default is to run this in ubuntu, macos and windows | ||
|
||
name: ${{ matrix.os }} / 3.9 / test built artifact | ||
needs: [build] | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu | ||
|
||
runs-on: ${{ matrix.os }}-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
- name: set up python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | ||
|
||
- name: get dist artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pypi_files | ||
path: dist | ||
|
||
- run: rm -r ocr-correction-viklofg-sweocr/src | ||
- run: pip install typing-extensions | ||
- run: pip install -r ocr-correction-viklofg-sweocr/tests/requirements-testing.lock | ||
- run: pip install sparv-sbx-ocr-correction-viklofg-sweocr --no-index --no-deps --find-links dist --force-reinstall | ||
- run: pytest ocr-correction-viklofg-sweocr/tests | ||
|
||
# https://github.com/marketplace/actions/alls-green#why used for branch protection checks | ||
release-check: | ||
if: always() | ||
needs: | ||
- build | ||
- test-build | ||
runs-on: ubuntu-latest | ||
permissions: {} | ||
steps: | ||
- name: Decide whether the needed jobs succeeded or failed | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
jobs: ${{ toJSON(needs) }} | ||
# allowed-failures: coverage | ||
|
||
publish: | ||
# This action publishes the built and tested artifact to PyPI, but only on a tag | ||
|
||
needs: | ||
- test-build | ||
if: success() && startsWith(github.ref, 'refs/tags/ocr-correction-viklofg-sweocr-v') | ||
runs-on: ubuntu-latest | ||
environment: release | ||
permissions: | ||
# IMPORTANT: this permission is mandatory for trusted publishing | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ env.MINIMUM_PYTHON_VERSION }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.MINIMUM_PYTHON_VERSION }} | ||
- name: get dist artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: pypi_files | ||
path: dist | ||
|
||
- name: Publish package to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-yaml | ||
stages: [commit] | ||
- id: check-json | ||
stages: [commit] | ||
- id: check-toml | ||
stages: [commit] | ||
- id: check-merge-conflict | ||
stages: [commit] | ||
- id: check-case-conflict | ||
stages: [commit] | ||
- id: detect-private-key | ||
stages: [commit] | ||
# - id: end-of-file-fixer | ||
- id: check-added-large-files | ||
stages: [commit] | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
# Ruff version. | ||
rev: v0.3.2 | ||
hooks: | ||
# Run the linter. | ||
- id: ruff | ||
# Run the formatter. | ||
- id: ruff-format | ||
- repo: https://github.com/crate-ci/committed | ||
rev: v1.0.20 | ||
hooks: | ||
- id: committed | ||
stages: [commit-msg] |
Oops, something went wrong.