Skip to content

add the bit_array function #55

add the bit_array function

add the bit_array function #55

Workflow file for this run

name: test
on:
push:
branches:
- main
- release
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/[email protected]
- name: "check tags are correct"
uses: giacomocavalieri/tagref_action@v2
with:
unused_tags: "forbid"
- name: setup beam
uses: erlef/[email protected]
with:
otp-version: "26.0.2"
gleam-version: "0.32.0"
rebar3-version: "3"
- name: check formatting
run: gleam format --check src test
- name: dependencies download
run: gleam deps download
- name: erlang target tests
run: gleam test --target=erlang
- name: javascript target tests
run: gleam test --target=javascript