Compare commits
4 commits
897dc86371
...
04c6533156
Author | SHA1 | Date | |
---|---|---|---|
|
04c6533156 | ||
|
8d94c6ec1a | ||
|
2294ac78f8 | ||
|
d87c0f2c41 |
3 changed files with 21 additions and 4 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -47,11 +47,14 @@ jobs:
|
|||
run: |
|
||||
python -m tox
|
||||
python -m tox -e coverage_report
|
||||
- uses: codecov/codecov-action@v3
|
||||
- uses: codecov/codecov-action@v5
|
||||
with:
|
||||
fail_ci_if_error: true
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
fmt:
|
||||
name: Format
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: psf/black@stable
|
||||
- uses: isort/isort-action@v1
|
||||
|
|
14
README.md
14
README.md
|
@ -1,4 +1,4 @@
|
|||
# Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI) [![Coverage](https://codecov.io/gh/anishathalye/dotbot/branch/master/graph/badge.svg)](https://app.codecov.io/gh/anishathalye/dotbot) [![PyPI](https://img.shields.io/pypi/v/dotbot.svg)](https://pypi.org/pypi/dotbot/) [![Python 3.6+](https://img.shields.io/badge/python-3.6%2B-blue)](https://pypi.org/pypi/dotbot/)
|
||||
# Dotbot [![Build Status](https://github.com/anishathalye/dotbot/workflows/CI/badge.svg)](https://github.com/anishathalye/dotbot/actions?query=workflow%3ACI) [![Coverage](https://codecov.io/gh/anishathalye/dotbot/branch/master/graph/badge.svg)](https://app.codecov.io/gh/anishathalye/dotbot) [![PyPI](https://img.shields.io/pypi/v/dotbot?logo=pypi)](https://pypi.org/pypi/dotbot/) [![Homebrew](https://img.shields.io/homebrew/v/dotbot?logo=homebrew)](https://formulae.brew.sh/formula/dotbot) [![Python 3.6+](https://img.shields.io/badge/python-3.6%2B-blue?logo=python)](https://pypi.org/pypi/dotbot/)
|
||||
|
||||
Dotbot makes installing your dotfiles as easy as `git clone $url && cd dotfiles
|
||||
&& ./install`, even on a freshly installed system!
|
||||
|
@ -89,6 +89,8 @@ submodule; be sure to commit your changes before running `./install`, otherwise
|
|||
the old version of Dotbot will be checked out by the install script. If using a
|
||||
subrepo, run `git fetch && git checkout origin/master` in the Dotbot directory.
|
||||
|
||||
### PyPI and Homebrew
|
||||
|
||||
If you prefer, you can install Dotbot from [PyPI] and call it as a command-line
|
||||
program:
|
||||
|
||||
|
@ -97,7 +99,14 @@ pip install dotbot
|
|||
touch install.conf.yaml
|
||||
```
|
||||
|
||||
In this case, rather than running `./install`, you can invoke Dotbot with
|
||||
For [Homebrew] call it:
|
||||
|
||||
```bash
|
||||
brew install dotbot
|
||||
touch install.conf.yaml
|
||||
```
|
||||
|
||||
In these cases, rather than running `./install`, you can invoke Dotbot with
|
||||
`dotbot -c <path to configuration file>`.
|
||||
|
||||
### Full Example
|
||||
|
@ -467,6 +476,7 @@ Copyright (c) Anish Athalye. Released under the MIT License. See
|
|||
[LICENSE.md][license] for details.
|
||||
|
||||
[PyPI]: https://pypi.org/project/dotbot/
|
||||
[Homebrew]: https://formulae.brew.sh/formula/dotbot
|
||||
[init-dotfiles]: https://github.com/Vaelatern/init-dotfiles
|
||||
[dotfiles-template]: https://github.com/anishathalye/dotfiles_template
|
||||
[inspiration]: https://github.com/anishathalye/dotbot/wiki/Users
|
||||
|
|
4
codecov.yml
Normal file
4
codecov.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
coverage:
|
||||
status:
|
||||
project: off
|
||||
patch: off
|
Loading…
Reference in a new issue