From bfa16a8664e9aece6445f0434395373ab7e44569 Mon Sep 17 00:00:00 2001 From: Robert Attard Date: Mon, 6 May 2024 17:17:36 -0400 Subject: [PATCH] test using reusable workflow --- .github/workflows/test.yml | 53 +++----------------------------------- 1 file changed, 4 insertions(+), 49 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc3dc2e..a4b9f02 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,5 @@ name: Test -env: - GLEAM_VERSION: "1.1.0" - ERLANG_VERSION: 26 - on: push: branches: @@ -12,48 +8,7 @@ on: workflow_call: jobs: - format: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: TanklesXL/gleam_actions/actions/format@main - with: - gleam_version: ${{ env.GLEAM_VERSION }} - - deps: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: TanklesXL/gleam_actions/actions/deps_cache@main - with: - gleam_version: ${{ env.GLEAM_VERSION }} - - test_erlang: - runs-on: ubuntu-latest - needs: deps - strategy: - fail-fast: true - matrix: - erlang: ["26", "25", "27.0-rc3"] - steps: - - uses: actions/checkout@v4 - - uses: TanklesXL/gleam_actions/actions/deps_restore@main - - uses: TanklesXL/gleam_actions/actions/test_erlang@main - with: - erlang_version: ${{ matrix.erlang }} - gleam_version: ${{ env.GLEAM_VERSION }} - - test_node: - runs-on: ubuntu-latest - needs: deps - strategy: - fail-fast: true - matrix: - node: ["22", "20", "18"] - steps: - - uses: actions/checkout@v4 - - uses: TanklesXL/gleam_actions/actions/deps_restore@main - - uses: TanklesXL/gleam_actions/actions/test_node@main - with: - node_version: ${{ matrix.node }} - gleam_version: ${{ env.GLEAM_VERSION }} + test: + uses: TanklesXL/gleam_actions/workflows/test.yaml@test_workflow + with: + gleam_version: 1.1.0