Updated deps and added notes #133
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: "Lint, test and build" | |
on: ["push", "pull_request"] | |
jobs: | |
test_and_build: | |
name: "Build mix release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Setup elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.14.5" | |
otp-version: "24.3.3" | |
- uses: actions/checkout@v1 | |
- run: | | |
mix local.hex --force | |
mix local.rebar --force | |
mix deps.get | |
mix lint |