-
Notifications
You must be signed in to change notification settings - Fork 80
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
1 changed file
with
10 additions
and
10 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 |
---|---|---|
|
@@ -25,12 +25,12 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
java-version: 11.0.2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install Virtualenv | ||
run: pip install virtualenv | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v2 | ||
# with: | ||
# python-version: 3.7 | ||
# - name: Install Virtualenv | ||
# run: pip install virtualenv | ||
- name: Install GEOS | ||
run: sudo apt-get install libgeos-dev | ||
- name: Grant execute permission for gradlew | ||
|
@@ -43,10 +43,10 @@ jobs: | |
run: .github/workflow_scripts/update_project_version.sh | ||
|
||
# Quality Checks | ||
- name: ShellCheck PyAtlas | ||
run: shellcheck pyatlas/*.sh | ||
- name: Build PyAtlas | ||
run: ./gradlew cleanPyatlas buildPyatlas | ||
# - name: ShellCheck PyAtlas | ||
# run: shellcheck pyatlas/*.sh | ||
# - name: Build PyAtlas | ||
# run: ./gradlew cleanPyatlas buildPyatlas | ||
- name: Quality checks (No tests) | ||
run: ./gradlew jar check -x test -x integrationTest | ||
- name: Tests | ||
|