-
Notifications
You must be signed in to change notification settings - Fork 934
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
94 additions
and
86 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,21 @@ | ||
name: Test installs | ||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
|
||
install: | ||
strategy: | ||
matrix: | ||
python-version: | ||
- 2.7 | ||
- 3.6 | ||
- 3.7 | ||
- 3.8 | ||
runs-on: ubuntu-latest | ||
container: python:${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: python setup.py install | ||
- run: mackup --help |
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,14 @@ | ||
name: Lint Python | ||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
|
||
black: | ||
runs-on: ubuntu-latest | ||
container: python | ||
steps: | ||
- run: pip install black | ||
- uses: actions/checkout@v2 | ||
- run: black --check --target-version py27 . |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Lint Markdown | ||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
|
||
mdl: | ||
runs-on: ubuntu-latest | ||
container: rsrchboy/mdl | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: mdl . |
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,29 @@ | ||
name: Run tests | ||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
|
||
nose-2_7: | ||
runs-on: ubuntu-latest | ||
container: python:2.7 | ||
steps: | ||
- run: pip install docopt six nose | ||
- uses: actions/checkout@v2 | ||
- run: nosetests --with-coverage --cover-tests --cover-inclusive --cover-branches --cover-package=mackup | ||
|
||
nose: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: | ||
- 3.6 | ||
- 3.7 | ||
- 3.8 | ||
container: python:${{ matrix.python-version }} | ||
steps: | ||
- run: pip install pipenv | ||
- uses: actions/checkout@v2 | ||
- run: pipenv install -d | ||
- run: make test |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[application] | ||
name = Quitter | ||
|
||
[configuration_files] | ||
Library/Preferences/com.marcoarment.quitter.plist |
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ name = Tmux | |
|
||
[configuration_files] | ||
.tmux.conf | ||
|
||
[xdg_configuration_files] | ||
tmux/tmux.conf |
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