From 9adf8a1bac48e01dfdd86b5e4a465428a5acb5d7 Mon Sep 17 00:00:00 2001 From: Sean Hinde Date: Mon, 16 Jan 2023 01:19:06 +0100 Subject: [PATCH] Add test run to ci --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ea62a2..1547e29 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,6 +53,13 @@ commands: name: Build command: | make + run_tests: + description: "Test" + steps: + - run: + name: Test + command: | + make test jobs: ubuntu_2004_otp21: @@ -62,6 +69,7 @@ jobs: - setup_ubuntu: OTP_VERSION: "21.3.8.24" - run_build + - run_tests ubuntu_2004_otp22: executor: ubuntu_2004 steps: @@ -69,6 +77,7 @@ jobs: - setup_ubuntu: OTP_VERSION: "22.3.4.26" - run_build + - run_tests ubuntu_2004_otp23: executor: ubuntu_2004 steps: @@ -76,6 +85,7 @@ jobs: - setup_ubuntu: OTP_VERSION: "23.3.4.18" - run_build + - run_tests macos_1106_otp23: executor: macos_1106 steps: @@ -83,6 +93,7 @@ jobs: - setup_macos: OTP_VERSION: "23" - run_build + - run_tests nix_alpine: executor: nix_alpine_ci steps: