generated from pdm-project/pdm
-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
tag_filter
as a way to pre-filter tags
Fixes #219
- Loading branch information
Showing
7 changed files
with
402 additions
and
81 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 |
---|---|---|
|
@@ -36,6 +36,27 @@ jobs: | |
run: | | ||
python -m pip install -U pip pytest setuptools editables | ||
pip install . | ||
- name: Install Mercurial | ||
shell: bash | ||
run: | | ||
case "$RUNNER_OS" in | ||
"Linux") | ||
sudo apt install mercurial | ||
;; | ||
"Windows") | ||
choco install hg | ||
;; | ||
"macOS") | ||
brew install mercurial | ||
;; | ||
"*") | ||
echo "$RUNNER_OS not supported" | ||
exit 1 | ||
;; | ||
esac | ||
echo "[ui]" >> ~/.hgrc | ||
echo "username = \"John Doe <[email protected]>\"" >> ~/.hgrc | ||
- name: Run Tests | ||
run: | | ||
git config --global user.name "John Doe" | ||
|
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
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
Oops, something went wrong.