aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2023-11-24 11:39:55 +0100
committerLoïc Hoguin <[email protected]>2023-12-01 10:00:33 +0100
commitd64ac25e925569d31d702a5af075ee48814c9caa (patch)
tree102da8c617eb58b6ae303e37893d42d27666bc88 /.github/workflows/ci.yaml
parentb2a16a2ee6ffbc9b9f4417d8b7ee90248c0cc1e3 (diff)
downloadcowboy-d64ac25e925569d31d702a5af075ee48814c9caa.tar.gz
cowboy-d64ac25e925569d31d702a5af075ee48814c9caa.tar.bz2
cowboy-d64ac25e925569d31d702a5af075ee48814c9caa.zip
Use GitHub actions for testing Cowboy
Now tested against OTP-24+. Erlang.mk has been updated as well.
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
new file mode 100644
index 0000000..daff2e7
--- /dev/null
+++ b/.github/workflows/ci.yaml
@@ -0,0 +1,15 @@
+## Use workflows from ninenines/ci.erlang.mk to test Cowboy.
+
+name: Check Cowboy
+
+on:
+ push:
+ pull_request:
+ schedule:
+ ## Every Monday at 2am.
+ - cron: 0 2 * * 1
+
+jobs:
+ check:
+ name: Cowboy
+ uses: ninenines/ci.erlang.mk/.github/workflows/ci.yaml@master