Skip to content

Commit

Permalink
Merge branch 'git-commit-push-action-11513058557-windows-full-remote'…
Browse files Browse the repository at this point in the history
… into windows
  • Loading branch information
GuillaumeFalourd authored and GuillaumeFalourd committed Oct 25, 2024
2 parents 74f0e2b + 3f9a5b3 commit 60beea3
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 3 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/workflow-tester100-1.yml
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"
37 changes: 37 additions & 0 deletions .github/workflows/workflow-tester100-2.yml
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"
2 changes: 1 addition & 1 deletion backup/checkout-workflow.txt
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
2 changes: 1 addition & 1 deletion backup/pull-request-workflow.txt
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
2 changes: 1 addition & 1 deletion windows_report_full_remote.txt
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

0 comments on commit 60beea3

Please sign in to comment.