mirror of
https://github.com/actions/checkout.git
synced 2025-04-04 07:20:07 +02:00
Add local testing yaml
This commit is contained in:
parent
01bc4e5c74
commit
b69a3baa7b
1 changed files with 18 additions and 0 deletions
18
.github/workflows/test.yml
vendored
Normal file
18
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: "test-local"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- 'releases/*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [windows-latest, ubuntu-latest, macOS-latest]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- uses: ./
|
||||||
|
- run: git ls-remote --tags origin
|
Loading…
Add table
Reference in a new issue