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 4ec1c2f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 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: /home/runner/work/cldr/cldr/cldr/cldr_xxx-rc-y
permissions:
contents: read
jobs:
Expand Down Expand Up @@ -38,9 +38,16 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
path: ${{matrix.app}}
repository: elixir-cldr/${{matrix.app}}
- uses: actions/checkout@v4
with:
path: cldr
repository: elixir-cldr/cldr
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 /home/runner/work/cldr/cldr/cldr && mix hex.build -o /home/runner/work/cldr/cldr/cldr/cldr_xxx-rc-y --unpack
- run: cd /home/runner/work/cldr/cldr/${{matrix.app}} && mix deps.get && mix deps.compile && mix compile --warnings-as-errors && mix test

0 comments on commit 4ec1c2f

Please sign in to comment.