Skip to content

Implement the Copy/Move API #3

Implement the Copy/Move API

Implement the Copy/Move API #3

Workflow file for this run

name: Erlang CI
on:
push:
branches: [ wday-develop-3.2 ]
pull_request:
branches: [ wday-develop-3.2 ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp:
- "25.1"
- "24.3"
- "22.3"
container:
image: erlang:${{ matrix.otp }}
steps:
- uses: lukka/get-cmake@latest
- uses: actions/checkout@v2
- name: Compile
run: ./rebar3 compile
- name: Run xref and dialyzer
run: ./rebar3 do xref, dialyzer
- name: Run eunit
run: ./rebar3 as gha do eunit