mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-18 09:29:03 +00:00
Run workflow on linux, mac, and windows
This commit is contained in:
parent
37c45447e4
commit
8e3f7b5c19
9
.github/workflows/workflow.yml
vendored
9
.github/workflows/workflow.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Test Cache Action
|
||||
name: Tests
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
@ -7,7 +7,12 @@ on:
|
|||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
name: Test on ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
|
|
Loading…
Reference in a new issue