We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58f462b + a6181b3 commit 0f6e15dCopy full SHA for 0f6e15d
.github/workflows/prettier.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: Prettify code
21
uses: creyD/prettier_action@v3.0
22
with:
23
- prettier_options: --write **/*.{java,md}
+ prettier_options: --write **/*.{java}
24
commit_message: 'feat: prettify code'
25
env:
26
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.travis.yml
@@ -0,0 +1,9 @@
1
+language: java
2
+script:
3
+ - find . -type f -name "*.java" > sources.txt
4
+ - javac @sources.txt
5
+
6
+notifications:
7
+ webhooks: https://www.travisbuddy.com/
8
+ on_success: never
9
+ on_failure: always
0 commit comments