aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2023-12-04 10:43:17 +0100
committerLoïc Hoguin <[email protected]>2023-12-04 11:08:09 +0100
commit284bf3c4c6a6e33534e285d3869f86f9592ad31a (patch)
treebeea75ebb1c0579137a5ccbd4fa35746cb9aa50a /.github
parent706594d9c80bc06a2681d2319ab7196478eb7bc4 (diff)
downloadranch-284bf3c4c6a6e33534e285d3869f86f9592ad31a.tar.gz
ranch-284bf3c4c6a6e33534e285d3869f86f9592ad31a.tar.bz2
ranch-284bf3c4c6a6e33534e285d3869f86f9592ad31a.zip
Use GitHub actions for testing Ranch
Now tested against OTP-24+. Erlang.mk has been updated as well.
Diffstat (limited to '.github')
-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..b679b36
--- /dev/null
+++ b/.github/workflows/ci.yaml
@@ -0,0 +1,15 @@
+## Use workflows from ninenines/ci.erlang.mk to test Ranch.
+
+name: Check Ranch
+
+on:
+ push:
+ pull_request:
+ schedule:
+ ## Every Monday at 4am.
+ - cron: 0 4 * * 1
+
+jobs:
+ check:
+ name: Ranch
+ uses: ninenines/ci.erlang.mk/.github/workflows/ci.yaml@master