-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* set credentials persistence to `false` in GitHub checkout actions * fixed release notes presence check GitHub workflow (using new action for it) * added supported Atum Agent control functions list to documentation * added new grouping of issues into release notes draft * added badges to `README.md` * CODEOWNERS update * ignoring `AgentServerCompatibilityTests` * conditional load of some modules based on Java version * run tests on all Scala versions --------- Co-authored-by: Ladislav Sulak <[email protected]>
- Loading branch information
Showing
14 changed files
with
214 additions
and
139 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 +1 @@ | ||
* @benedeki @lsulak @TebaleloS @Zejnilovic @dk1844 @salamonpavel | ||
* @benedeki @lsulak @Zejnilovic @dk1844 @salamonpavel @ABLL526 |
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 |
---|---|---|
|
@@ -30,19 +30,20 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-depth: 1 | ||
persist-credentials: false | ||
- uses: coursier/cache-action@v5 | ||
|
||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v14 | ||
with: | ||
java-version: "[email protected]" | ||
|
||
- name: Build and run unit tests | ||
run: sbt "project model" test doc "project reader" test doc "project agent_spark3" test doc | ||
- name: Build and run tests | ||
run: sbt testAll | ||
|
||
- name: Build and run integration tests | ||
run: sbt "project model" testIT "project reader" testIT "project agent_spark3" testIT | ||
- name: Generate documenation | ||
run: sbt doc | ||
|
||
test-database-and-server: | ||
name: Test Database and Server | ||
|
@@ -64,7 +65,8 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-depth: 1 | ||
persist-credentials: false | ||
- uses: coursier/cache-action@v5 | ||
|
||
- name: Setup Scala | ||
|
@@ -73,10 +75,14 @@ jobs: | |
java-version: "[email protected]" | ||
|
||
- name: Build and run unit tests | ||
run: sbt "project database" test doc "project server" test doc | ||
run: sbt "project database" test "project server" test | ||
|
||
- name: Prepare testing database | ||
run: sbt flywayMigrate | ||
|
||
- name: Build and run integration tests | ||
run: sbt "project database" testIT "project server" testIT | ||
|
||
- name: Generate documentation | ||
run: sbt "project database" doc "project server" doc | ||
|
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# | ||
# Copyright 2021 ABSA Group Limited | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
name: Release Notes Presence Check | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, edited, labeled, unlabeled] | ||
branches: [ master ] | ||
|
||
env: | ||
SKIP_LABEL: 'no RN' | ||
RLS_NOTES_TAG_REGEX: 'Release Notes:' | ||
|
||
jobs: | ||
release-notes-presence-check: | ||
name: Release Notes Presence Check | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Check presence of release notes in PR description | ||
uses: AbsaOSS/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
github-repository: ${{ github.repository }} | ||
pr-number: ${{ github.event.number }} |
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
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
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
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
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
Oops, something went wrong.