mirror of
https://github.com/mtkennerly/dunamai-action.git
synced 2025-06-20 14:30:48 +00:00
30 lines
637 B
YAML
30 lines
637 B
YAML
on:
|
|
- workflow_dispatch
|
|
|
|
name: Errors
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macos-latest
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.7'
|
|
- uses: ./
|
|
name: before checkout
|
|
continue-on-error: true
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
# This is necessary so that we have the tags.
|
|
fetch-depth: 0
|
|
- uses: ./
|
|
name: invalid VCS
|
|
continue-on-error: true
|
|
with:
|
|
command: dunamai from incorrect
|