Skip to content

wip: Migrating circleci to github actions #5

wip: Migrating circleci to github actions

wip: Migrating circleci to github actions #5

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:
javaversion: [8, 11, 17, 19]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Shared CI Steps
uses: ./.github/actions/ci
with:
os: ubuntu
java_version: ${{ matrix.javaversion }}