Merge pull request #122 from dwyl/dependabot/hex/ex_doc-0.35.1 #49
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: Elixir CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: "1.14.2" # Define the elixir version [required] | |
otp-version: "25.1.2" # Define the OTP version [required] | |
- name: Restore dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }} | |
restore-keys: ${{ runner.os }}-mix- | |
- name: Install Node.js Deps | |
run: npm install | |
- name: Run JSON Lint to confirm quotes.json is valid | |
run: npm run jsonlint | |
- name: Install Elixir dependencies | |
run: mix deps.get | |
- name: Run Tests | |
run: mix coveralls.json | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 |