Bump ex_doc from 0.30.7 to 0.30.8 #34
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
env: | |
OTP_VERSION: 24.2.1 | |
ELIXIR_VERSION: 1.12.3 | |
# based https://github.com/erlef/setup-beam | |
on: | |
pull_request_target: | |
branches: | |
- "main" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{env.OTP_VERSION}} | |
elixir-version: ${{env.ELIXIR_VERSION}} | |
- name: install inotify-tools | |
run: sudo apt-get install -y inotify-tools | |
- name: deps.get deps.compile | |
run: mix do deps.get, deps.compile | |
- name: compile | |
run: mix compile --warnings-as-errors | |
- name: test | |
run: mix test --warnings-as-errors | |
- name: format | |
run: mix format --check-formatted | |
- name: credo | |
run: mix credo |