Skip to content

Commit

Permalink
Leverage release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Schultzer committed Apr 28, 2024
1 parent 77cfa6d commit 05664f9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Integration
on: push
env:
MIX_ENV: test
CLDR_BRANCH: ${{ github.ref_name }}
CLDR_PATH: ${{github.workspace}}/${{github.ref_name}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}
permissions:
contents: read
jobs:
Expand Down Expand Up @@ -38,9 +38,16 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
repository: elixir-cldr/${{matrix.app}}
path: ${{matrix.app}}
repository: ${{github.repository_owner}}/${{matrix.app}}
- uses: actions/checkout@v4
with:
path: ${{github.ref_name}}
repository: ${{github.repository}}
ref: ${{github.ref_name}}
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get && mix deps.compile && mix compile --warnings-as-errors && mix test
- run: cd ${{github.workspace}}/${{github.ref_name}} && mix hex.build -o ${{CLDR_PATH}} --unpack
- run: cd ${{github.workspace}}/${{matrix.app}} && mix deps.get && mix deps.compile && mix compile --warnings-as-errors && mix test

0 comments on commit 05664f9

Please sign in to comment.