Skip to content

wip: Migrating circleci to github actions #4

wip: Migrating circleci to github actions

wip: Migrating circleci to github actions #4

Workflow file for this run

name: Build and Test
on:
push:
branches: [main, feat/**, abarker/**]
paths-ignore:
- '**.md' #Do not need to run CI for markdown changes.
pull_request:
branches: [main, feat/**]
paths-ignore:
- '**.md'
jobs:
build-and-test:
strategy:
matrix:
os: [ubuntu-22.04]
javaversion: [8, 11, 17, 19]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Shared CI Steps
uses: ./.github/actions/ci
with:
java_version: ${{ matrix.javaversion }}