mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
Run CI on linux, macos and windows
This commit is contained in:
parent
b995a7b937
commit
83e6d042d7
2 changed files with 8 additions and 2 deletions
5
.github/workflows/dev.yml
vendored
5
.github/workflows/dev.yml
vendored
|
@ -6,7 +6,10 @@ on:
|
|||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
|
|
5
.github/workflows/prod.yml
vendored
5
.github/workflows/prod.yml
vendored
|
@ -9,7 +9,10 @@ on:
|
|||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in a new issue