Skip to content

Commit

Permalink
update: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincentqyw committed Dec 23, 2024
1 parent 0931ae9 commit 59d74fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
submodules: true
submodules: recursive

- uses: actions/setup-python@v5
with:
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Upgrade setuptools and wheel
run: |
pip install --upgrade setuptools wheel
- name: Install dependencies on Ubuntu
if: runner.os == 'Linux'
run: |
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ I provide an example to add local feature in [hloc/extractors/example.py](hloc/e

## Contributions welcome!

External contributions are very much welcome. Please follow the [PEP8 style guidelines](https://www.python.org/dev/peps/pep-0008/) using a linter like flake8 (reformat using command `python -m black .`). This is a non-exhaustive list of features that might be valuable additions:
External contributions are very much welcome. Please follow the [PEP8 style guidelines](https://www.python.org/dev/peps/pep-0008/) using a linter like flake8. This is a non-exhaustive list of features that might be valuable additions:

- [x] add [CPU CI](.github/workflows/ci.yml)
- [x] add webcam support
Expand All @@ -137,12 +137,18 @@ git submodule add https://github.com/cvg/GlueStick.git third_party/GlueStick
If remote submodule repositories are updated, don't forget to pull submodules with:

``` bash
git submodule init
git submodule update --init --recursive
git submodule update --remote
```

if you only want to update one submodule, use `git submodule update --remote third_party/GlueStick`.

To format code before committing, run:

```bash
pre-commit run -a # Auto-checks and fixes
```

## Contributors

<a href="https://github.com/Vincentqyw/image-matching-webui/graphs/contributors">
Expand Down

0 comments on commit 59d74fa

Please sign in to comment.