Skip to content

Commit

Permalink
chore: give workflow steps a name
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Jun 11, 2024
1 parent 762daaa commit 95093b1
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,18 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- name: 📥 Checkout repository
uses: actions/checkout@v4

- name: 🧰 Setup Beam
uses: erlef/setup-beam@v1
with:
otp-version: "26"
gleam-version: "1.2.0"
gleam-version: "1.2.1"
rebar3-version: "3"
- run: gleam format --check src test
- run: gleam test

- name: 📝 Run fmt
run: gleam format --check src test

- name: 🧪 Run tests
run: gleam test

0 comments on commit 95093b1

Please sign in to comment.