diff options
Diffstat (limited to '.github/workflow')
| -rw-r--r-- | .github/workflow/ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflow/ci.yml b/.github/workflow/ci.yml new file mode 100644 index 0000000..549aa68 --- /dev/null +++ b/.github/workflow/ci.yml @@ -0,0 +1,14 @@ +name: ci + +on: + push: + branches: [main] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Force Failure + run: (exit 1)s |
