update minimal workflows

Signed-off-by: GuillaumeFalourd <guillaume.falourd@zup.com.br>
This commit is contained in:
GuillaumeFalourd 2021-10-21 15:10:35 -03:00
parent ec2d763053
commit fce6a92281
3 changed files with 3 additions and 0 deletions

View file

@ -9,6 +9,7 @@ on:
jobs: jobs:
macos-minimal: macos-minimal:
runs-on: macos-latest runs-on: macos-latest
if: github.event_name != 'push'
steps: steps:
- uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4
- run: date > reports/macos_report_minimal.txt - run: date > reports/macos_report_minimal.txt

View file

@ -9,6 +9,7 @@ on:
jobs: jobs:
ubuntu-minimal: ubuntu-minimal:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event_name != 'push'
steps: steps:
- uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4
- run: date > reports/ubuntu_report_minimal.txt - run: date > reports/ubuntu_report_minimal.txt

View file

@ -9,6 +9,7 @@ on:
jobs: jobs:
windows-minimal: windows-minimal:
runs-on: windows-latest runs-on: windows-latest
if: github.event_name != 'push'
steps: steps:
- uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4
- run: date > reports/windows_report_minimal.txt - run: date > reports/windows_report_minimal.txt