diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..13b2083 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,10 @@ +name: Continuous Testing + +on: + # Run once a week, so we CI backend updates don't sneak up on us + schedule: + - cron: "0 13 * * SUN" + +jobs: + call-test: + uses: ./.github/workflows/test.yaml diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml new file mode 100644 index 0000000..e242987 --- /dev/null +++ b/.github/workflows/commit.yaml @@ -0,0 +1,10 @@ +name: Commit Testing + +on: + push: + branches-ignore: + - master + +jobs: + call-test: + uses: ./.github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 58dcedb..2978b8a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,7 +1,7 @@ name: Test on: - push: + workflow_call: jobs: linux: