Skip to content

Commit

Permalink
Add integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Schultzer committed Apr 21, 2024
1 parent 58bd7c9 commit caf6233
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Integration
on: push
env:
MIX_ENV: test
BRANCH: ${{ github.branch }}
permissions:
contents: read
jobs:
cldr_territories:
runs-on: ubuntu-latest
name: CLDR Territories ${{ github.branch }}
steps:
- uses: actions/checkout@v4
with:
repository: "elixir-cldr/cldr_territories"
- uses: erlef/setup-beam@v1
with:
otp-version: 26.2
elixir-version: 1.16
- uses: actions/cache@v4
with:
path: |
deps
_build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- run: mix deps.get && mix compile --warnings-as-errors && mix test && mix dialyzer

0 comments on commit caf6233

Please sign in to comment.