My template for typescript based github actions and also my testing repo for new workflows I want to use with them.
For the template main
is the dev branch and stable
is the default branch to use.
The releases of this template can be ignored, since they are for testing only.
Name | Requirement | Default | Description |
---|---|---|---|
dummy-input |
optional | 'foo' | Dummy input |
steps:
- uses: actions/checkout@v1
- uses: s-weigand/github-action-template@v1
with:
dummy-input: bar
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [3.6, 3.7, 3.8]
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v1
- uses: s-weigand/github-action-template@v1
with:
dummy-input: bar