Add seniority update as alternative to adding seniority ts to heartbe… #1104
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: Erlang CI | |
on: | |
push: | |
branches: [master] | |
tags: ['v*'] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.3, 23.3, 24.1] | |
container: | |
image: erlang:${{ matrix.node-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Compile with OTP ${{ matrix.node-version }} | |
run: rebar3 compile |