Support for 7 digit as valid CE #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
build-and-test: | |
name: Build and test elixir | |
runs-on: ubuntu-latest | |
container: elixir:1.11-alpine | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install build dependencies | |
run: | | |
apk add --update bash openssl git | |
mix local.hex --force && mix local.rebar --force | |
- name: Install elixir dependencies | |
run: mix deps.get | |
- name: Run CI Tests | |
env: | |
MIX_ENV: test | |
run: mix ci |