-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
4 changed files
with
84 additions
and
0 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,7 @@ | ||
# These are supported funding model platforms | ||
|
||
github: bbatsov | ||
patreon: bbatsov | ||
ko_fi: bbatsov | ||
liberapay: bbatsov | ||
custom: https://www.paypal.me/bbatsov |
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,28 @@ | ||
*Use the template below when reporting bugs. Please, make sure that | ||
you're running the latest stable Projectile and that the problem you're reporting | ||
hasn't been reported (and potentially fixed) already.* | ||
|
||
**Remove all of the placeholder text in your final report!** | ||
|
||
## Expected behavior | ||
|
||
## Actual behavior | ||
|
||
## Steps to reproduce the problem | ||
|
||
*This is extremely important! Providing us with a reliable way to reproduce | ||
a problem will expedite its solution.* | ||
|
||
## Environment & Version information | ||
|
||
### super-save version | ||
|
||
*E.g. 0.4* | ||
|
||
### Emacs version | ||
|
||
*E.g. 24.5* (use <kbd>C-h C-a</kbd> to see it) | ||
|
||
### Operating system | ||
|
||
*E.g. Windows 10* |
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,16 @@ | ||
**Replace this placeholder text with a summary of the changes in your PR. | ||
The more detailed you are, the better.** | ||
|
||
----------------- | ||
|
||
Before submitting a PR make sure the following things have been done (and denote this | ||
by checking the relevant checkboxes): | ||
|
||
- [ ] The commits are consistent with our [contribution guidelines](../blob/master/CONTRIBUTING.md) | ||
- [ ] You've added tests (if possible) to cover your change(s) | ||
- [ ] All tests are passing ([`eldev test`](https://github.com/doublep/eldev)) | ||
- [ ] The new code is not generating bytecode or `M-x checkdoc` warnings | ||
- [ ] You've updated the [changelog](../blob/master/CHANGELOG.md) (if adding/changing user-visible functionality) | ||
- [ ] You've updated the readme (if adding/changing user-visible functionality) | ||
|
||
Thanks! |
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,33 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
paths-ignore: ['**.md', '**.adoc'] | ||
pull_request: | ||
paths-ignore: ['**.md', '**.adoc'] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
continue-on-error: ${{matrix.emacs_version == 'snapshot'}} | ||
|
||
strategy: | ||
matrix: | ||
# Earliest supported + latest in each stable branch + snapshot. | ||
emacs_version: ['25.1', '25.3', '26.3', '27.1', '28.1', 'snapshot'] | ||
|
||
steps: | ||
- name: Set up Emacs | ||
uses: purcell/setup-emacs@master | ||
with: | ||
version: ${{matrix.emacs_version}} | ||
|
||
- name: Install Eldev | ||
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh | ||
|
||
- name: Check out the source code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Lint the project | ||
run: | | ||
eldev -dtT -C compile --warnings-as-errors |