Skip to content

Don't run tests using bazel #86

Don't run tests using bazel

Don't run tests using bazel #86

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: OTP ${{ matrix.otp }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix
strategy:
matrix:
otp: [26, 27]
os: [ubuntu-latest]
steps:
- name: CHECKOUT REPOSITORY
uses: actions/checkout@v4
- name: CONFIGURE OTP
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
- name: XREF
run: make xref
- name: DIALYZE
run: make dialyze
- name: UNIT TEST
run: make eunit
- name: INTEGRATION TEST
run: make ct