mirror of
https://github.com/actions/checkout.git
synced 2024-11-09 20:08:27 +08:00
0b496e91ec
* Upgrade checkout to v1.1.0 to better support scripting git. * add changelog * Update README.md * Add local testing yaml * Add Status Badge to readme
19 lines
329 B
YAML
19 lines
329 B
YAML
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
|