Skip to content

lab3

lab3 #4

Workflow file for this run

name: Lab3
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: '26'
rebar3-version: '3.22.1'
- name: Format
run: rebar3 format --verify
working-directory: ${{github.workspace}}/3
- name: Lint
run: rebar3 lint
working-directory: ${{github.workspace}}/3
- name: Run tests
run: rebar3 eunit -v
working-directory: ${{github.workspace}}/3