Skip to content

Commit 0f6e15d

Browse files
Merge pull request TheAlgorithms#1934 from shellhub/dev
Add travis
2 parents 58f462b + a6181b3 commit 0f6e15d

File tree

4 files changed

+244
-247
lines changed

4 files changed

+244
-247
lines changed

.github/workflows/prettier.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Prettify code
2121
uses: creyD/[email protected]
2222
with:
23-
prettier_options: --write **/*.{java,md}
23+
prettier_options: --write **/*.{java}
2424
commit_message: 'feat: prettify code'
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)