Skip to content

add license and github link to hex info of .app.src #15

add license and github link to hex info of .app.src

add license and github link to hex info of .app.src #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ "main" ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
otp_version: ['26.1', '25.3', '24.e']
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
version-type: 'strict'
- uses: actions/cache@v3
with:
path: |
~/.cache/rebar3
_build
key: ${{ runner.os }}-erlang-${{ matrix.otp_version }}-${{ hashFiles('**/*rebar.lock') }}
- run: make build
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
otp_version: ['26.1', '25.3', '24.3']
needs:
- build
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
version-type: 'strict'
- uses: actions/cache@v3
with:
path: |
~/.cache/rebar3
_build
key: ${{ runner.os }}-erlang-${{ matrix.otp_version }}-${{ hashFiles('**/*rebar.lock') }}
- run: make test
slack-workflow-status:
if: always()
name: Post Workflow Status To Slack
needs:
- build
- test
runs-on: ubuntu-latest
steps:
- name: Slack Workflow Notification
uses: Gamesight/slack-workflow-status@master
with:
repo_token: ${{secrets.GITHUB_TOKEN}}
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL_DEVELOPMENT}}