chore(tests): align run-tests.sh with other packages #9
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (C) 2019 CERN. | |
| # Copyright (C) 2019 Northwestern University. | |
| # Copyright (C) 2025 Front Matter. | |
| # base32-lib is free software; you can redistribute it and/or modify it | |
| # under the terms of the MIT License; see LICENSE file for more details. | |
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - "feature/*" | |
| pull_request: | |
| branches: | |
| - master | |
| - "maint-**" | |
| - "feature/*" | |
| workflow_dispatch: | |
| inputs: | |
| reason: | |
| description: "Reason" | |
| required: false | |
| default: "Manual trigger" | |
| jobs: | |
| Python: | |
| uses: inveniosoftware/workflows/.github/workflows/tests-python.yml@master | |
| with: | |
| extras: "tests,docs" |