Skip to content

chore(README.md): with new link and added subproject commits for Arli… #49

chore(README.md): with new link and added subproject commits for Arli…

chore(README.md): with new link and added subproject commits for Arli… #49

Workflow file for this run

name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
build-javascript:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16, 18]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm install
- name: Run tests
run: npm test
build-java:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [11, 17]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
build-go:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.17, 1.18, 1.19]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
build-rust:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: [1.52, 1.53, 1.54]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust-version }}
profile: minimal
override: true