mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-11 04:41:31 +02:00
Run workflow on linux, mac, and windows
This commit is contained in:
parent
37c45447e4
commit
8e3f7b5c19
1 changed files with 7 additions and 2 deletions
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…
Add table
Reference in a new issue