Bump credo from 1.7.8 to 1.7.9 #550
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
# create this in .github/workflows/ci.yml | |
name: ci | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | |
strategy: | |
matrix: | |
include: | |
- otp: '27.x' | |
elixir: '1.17.x' | |
- otp: '26.x' | |
elixir: '1.16.x' | |
- otp: '26.x' | |
elixir: '1.15.x' | |
- otp: '25.x' | |
elixir: '1.16.x' | |
- otp: '25.x' | |
elixir: '1.15.x' | |
# otp: ['24.x', '25.x', '26.x', '27.x'] | |
# Turn off older Elixir and OTP versions for now since they keep time-outing on GH Actions | |
# even though they run the suite perfectly fine locally | |
# otp: ['24.x', '23.x', '22.x'] | |
# elixir: ['1.12.x', '1.11.x', '1.10.x', '1.9.x'] | |
# elixir: ['v1.17.x', 'v1.16.x', 'v1.15.x'] | |
# exclude: | |
# - otp: '27.x' | |
# elixir: '1.14.x' | |
# - otp: '27.x' | |
# elixir: '1.15.x' | |
# - otp: '24.x' | |
# elixir: '1.17.x' | |
env: | |
MIX_ENV: test | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# NODE_COVERALLS_DEBUG: 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- uses: actions/cache@v3 | |
id: mix-cache | |
with: | |
path: | | |
deps | |
_build | |
key: ${{ runner.os }}-${{ matrix.otp}}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.otp}}-${{ matrix.elixir }}-mix- | |
- if: steps.mix-cache.outputs.cache-hit != 'true' | |
run: | | |
mix deps.get | |
mix deps.compile | |
- run: mix compile | |
# - run: mix test # Testing is already done as part of the next task: | |
- run: mix coveralls.github --trace |