Skip to content

feat: add sparse mode for git-repositories #12

feat: add sparse mode for git-repositories

feat: add sparse mode for git-repositories #12

Workflow file for this run

---
name: test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test:
name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}}
runs-on: ubuntu-latest
strategy:
matrix:
elixir: ['1.13']
otp: ['24']
rebar3: ['3.20.0']
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{matrix.elixir}}
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
- name: Check fmt
run: rebar3 fmt --check
- name: Static analysis
run: rebar3 dialyzer
# - name: Common Tests
# run: rebar3 ct