14 lines
270 B
YAML
14 lines
270 B
YAML
name: CI
|
|
|
|
on:
|
|
# Run on all pushes to master and on all pull requests.
|
|
push:
|
|
branches:
|
|
master
|
|
pull_request:
|
|
# Allow manually triggering the workflow.
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
uses: "zetacomponents/.github/.github/workflows/ci.yml@master"
|