-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Windows from test environment. Change name of Action
- Loading branch information
Showing
1 changed file
with
3 additions
and
5 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: Tests | ||
|
||
run-name: "Build, tests and package" | ||
|
||
on: | ||
push: | ||
|
@@ -13,9 +13,7 @@ jobs: | |
build: | ||
strategy: | ||
matrix: | ||
# run 2 copies of the current job in parallel | ||
# and they will load balance all specs | ||
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ] | ||
os: [ 'ubuntu-latest', 'macos-latest' ] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
|
@@ -29,7 +27,7 @@ jobs: | |
|
||
# Need to downgrade Maven in order to allow HTTP (not HTTPS) packages to be downloaded. | ||
# This is necessary as HTTP repositories were blocked in Maven 3.8.1 | ||
# HTTP repositories are used in some outdated dependencies | ||
# HTTP repositories are used in some outdated dependenciesns | ||
# This step can be removed once KLASS packages have been updated to more recent versions | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
|