This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
Add first draft of chapter2's edit feature. #45
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: rebar-testing | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build and run on OTP-26 and latest LFE. | |
runs-on: ubuntu-latest | |
container: | |
image: erlang:26 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check rebar3 Version | |
run: DEBUG=1 rebar3 --version | |
- name: Compile | |
run: rebar3 do compile, lfe compile | |
- name: Run Tests | |
run: rebar3 lfe ltest -tall |