-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate on GitHub actions (#168)
* Add workflow LibraryOfCongress/tests-bagit-python * GH Actions: rename workflow file * README: remove old build status badge * Update developer dependencies
- Loading branch information
Showing
5 changed files
with
149 additions
and
95 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: LibraryOfCongress/tests-bagit-python | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
test: | ||
runs-on: ubuntu-16.04 | ||
steps: | ||
- name: checkout | ||
uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: "${{ matrix.python }}" | ||
- run: apt-get -y install gettext | ||
- run: pip install --upgrade pip | ||
- run: pip install coveralls coverage | ||
- run: coverage run --include=bagit.py setup.py test | ||
- run: coveralls | ||
if: "${{ success() }}" | ||
strategy: | ||
matrix: | ||
python: | ||
- '3.10' |
This file was deleted.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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