Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update date range and fix deprecated Ubuntu version #799

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build:

runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:

Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015-2023, Apple Inc. All rights reserved.
Copyright (c) 2015-2024, Apple Inc. All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Expand Down
Loading