-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'git-commit-push-action-11513058557-windows-full-remote'…
… into windows
- Loading branch information
Showing
5 changed files
with
80 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Test 100 (1) # https://stackoverflow.com/questions/79119626/how-to-run-github-action-job-only-if-all-previous-jobs-are-successful | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run-debug-tests: | ||
name: Unit tests | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" | ||
- name: Step 2 | ||
run: exit 1 # This step will fail, but the job will continue | ||
|
||
run-ui-tests: | ||
name: Android Tests | ||
runs-on: macos-latest | ||
continue-on-error: true | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" | ||
|
||
lint: | ||
name: Lint check | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" | ||
|
||
build_job: | ||
name: Building the APK | ||
runs-on: ubuntu-latest | ||
needs: [run-debug-tests, run-ui-tests, lint] | ||
if: ${{ needs.run-debug-tests.result == 'success' && needs.run-ui-tests.result == 'success' && needs.lint.result == 'success' }} | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" |
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,37 @@ | ||
name: Test 100 (2) # https://stackoverflow.com/questions/79119626/how-to-run-github-action-job-only-if-all-previous-jobs-are-successful | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run-debug-tests: | ||
name: Unit tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" | ||
- name: Step 2 | ||
run: exit 1 # This step will fail, and the job won't continue | ||
|
||
run-ui-tests: | ||
name: Android Tests | ||
runs-on: macos-latest | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" | ||
|
||
lint: | ||
name: Lint check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" | ||
|
||
build_job: | ||
name: Building the APK | ||
runs-on: ubuntu-latest | ||
needs: [run-debug-tests, run-ui-tests, lint] | ||
if: ${{ needs.run-debug-tests.result == 'success' && needs.run-ui-tests.result == 'success' && needs.lint.result == 'success' }} | ||
steps: | ||
- name: Step 1 | ||
run: echo "This step will succeed" |
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 @@ | ||
Wed Oct 23 01:39:50 UTC 2024 | ||
Thu Oct 24 01:40:06 UTC 2024 |
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 @@ | ||
Tue Oct 22 06:30:13 UTC 2024 | ||
Wed Oct 23 06:30:32 UTC 2024 |
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 @@ | ||
Thu Oct 24 06:28:03 CUT 2024 | ||
Fri Oct 25 06:27:33 CUT 2024 |