feat: add sparse mode for git-repositories #12
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: 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 |