Skip to content

Commit

Permalink
test using reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TanklesXL committed May 6, 2024
1 parent 7bbccf7 commit e5fdcbc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 50 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ on:

jobs:
test:
uses: TanklesXL/glint/.github/workflows/test.yml@main
uses: TanklesXL/gleam_actions/workflows/test.yaml@test_workflow
with:
gleam_version: 1.1.0

version:
runs-on: ubuntu-latest
Expand Down
53 changes: 4 additions & 49 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
name: Test

env:
GLEAM_VERSION: "1.1.0"
ERLANG_VERSION: 26

on:
push:
branches:
Expand All @@ -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

0 comments on commit e5fdcbc

Please sign in to comment.