Skip to content

My template for typescript based github actions and also my testing repo for new workflows i want to use with them

License

Notifications You must be signed in to change notification settings

s-weigand/github-action-template

Repository files navigation

Github action template

Actions Status codecov

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.

Inputs

Name Requirement Default Description
dummy-input optional 'foo' Dummy input

Usage

Basic:

steps:
  - uses: actions/checkout@v1
  - uses: s-weigand/github-action-template@v1
    with:
      dummy-input: bar

Matrix Testing:

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

About

My template for typescript based github actions and also my testing repo for new workflows i want to use with them

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •