Update all dependencies #86
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: ElixirXDR CI | |
on: | |
push: | |
branches: | |
- main | |
- 'v*.[0-9]' | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: Run tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
otp: ['22.3'] | |
elixir: ['1.10', '1.11'] | |
env: | |
MIX_ENV: test | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
coveralls.io:443 | |
github.com:443 | |
repo.hex.pm:443 | |
builds.hex.pm:443 | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- uses: erlef/setup-beam@61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0 | |
with: | |
otp-version: ${{ matrix.otp }} | |
elixir-version: ${{ matrix.elixir }} | |
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
restore-keys: | | |
${{ runner.os }}-mix- | |
- name: Install Dependencies | |
run: | | |
rm -rf deps _build | |
mix deps.get | |
- name: Check Formatting | |
run: mix format --check-formatted | |
- name: Run credo | |
run: mix credo --strict | |
- name: Run Tests and Excoveralls | |
run: mix coveralls.github --parallel --flagname otp-${{ matrix.otp }}-elixir-${{ matrix.elixir }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
finish: | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
coveralls.io:443 | |
- name: Set BUILD_NUMBER for Pull Request event | |
if: github.event_name == 'pull_request' | |
run: echo "BUILD_NUMBER=${{ github.event.pull_request.head.sha }}-PR-${{ github.event.pull_request.number }}" >> $GITHUB_ENV | |
- name: Set BUILD_NUMBER for Push event | |
if: github.event_name == 'push' | |
run: echo "BUILD_NUMBER=${{ github.sha }}" >> $GITHUB_ENV | |
- name: Publish Coverage Report | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BUILD_NUMBER: ${{ env.BUILD_NUMBER }} | |
run: | | |
curl -k "https://coveralls.io/webhook" -d "repo_token=$GITHUB_TOKEN&repo_name=$GITHUB_REPOSITORY&payload[build_num]=$BUILD_NUMBER&payload[status]=done" |