Skip to content

chore: import Scalang and its dependencies into the source tree #268

chore: import Scalang and its dependencies into the source tree

chore: import Scalang and its dependencies into the source tree #268

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven and Erlang
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 7
uses: actions/setup-java@v1
with:
java-version: 1.7
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.8.2
- name: Check Maven version
run: mvn -version
- name: Set up Erlang
uses: erlef/[email protected]
with:
otp-version: '23.3.1'
- name: Start epmd daemon
run: epmd -daemon
- name: Build with Maven
run: mvn -B package --file pom.xml