add all workflows for tests
Signed-off-by: GuillaumeFalourd <guillaume.falourd@zup.com.br>
This commit is contained in:
parent
b9d2932a84
commit
ec2d763053
9 changed files with 73 additions and 3 deletions
33
.github/workflows/macos_action_test.yml
vendored
Normal file
33
.github/workflows/macos_action_test.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: Action test on MacOS
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 4 * * *" # Runs at 04:00 UTC everyday
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
macos-minimal:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/macos_report_minimal.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
|
||||
macos-full:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/macos_report_full.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: macos full workflow
|
||||
target_branch: macos
|
||||
files: reports/macos_report_full.txt
|
||||
remote_repository: origin
|
||||
access_token: ${{ github.token }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
6
.github/workflows/ubuntu_action_test.yml
vendored
6
.github/workflows/ubuntu_action_test.yml
vendored
|
@ -11,21 +11,21 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/ubuntu_report_1.txt
|
||||
- run: date > reports/ubuntu_report_minimal.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
|
||||
ubuntu-full:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/ubuntu_report_2.txt
|
||||
- run: date > reports/ubuntu_report_full.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: ubuntu full workflow
|
||||
target_branch: ubuntu
|
||||
files: reports/ubuntu_report_2.txt
|
||||
files: reports/ubuntu_report_full.txt
|
||||
remote_repository: origin
|
||||
access_token: ${{ github.token }}
|
||||
force: true
|
||||
|
|
33
.github/workflows/windows_action_test.yml
vendored
Normal file
33
.github/workflows/windows_action_test.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: Action test on Windows
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 6 * * *" # Runs at 06:00 UTC everyday
|
||||
push:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
windows-minimal:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/windows_report_minimal.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
|
||||
windows-full:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
- run: date > reports/windows_report_full.txt
|
||||
- uses: GuillaumeFalourd/git-commit-push@main
|
||||
with:
|
||||
email: ${{ github.actor }}[bot]@users.noreply.github.com
|
||||
name: ${{ github.actor }}
|
||||
commit_message: windows full workflow
|
||||
target_branch: windows
|
||||
files: reports/windows_report_full.txt
|
||||
remote_repository: origin
|
||||
access_token: ${{ github.token }}
|
||||
force: true
|
||||
empty: true
|
||||
tags: true
|
1
reports/ubuntu_report_full.txt
Normal file
1
reports/ubuntu_report_full.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Thu Oct 21 18:00:59 UTC 2021
|
1
reports/ubuntu_report_minimal.txt
Normal file
1
reports/ubuntu_report_minimal.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Thu Oct 21 18:02:21 UTC 2021
|
1
reports/windows_report_full.txt
Normal file
1
reports/windows_report_full.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Thu Oct 21 18:00:59 UTC 2021
|
1
reports/windows_report_minimal.txt
Normal file
1
reports/windows_report_minimal.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Thu Oct 21 18:02:21 UTC 2021
|
Loading…
Add table
Reference in a new issue