Skip to content

Commit

Permalink
Use GitHub Actions for run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingun authored and generalmimon committed Nov 21, 2020
1 parent f19304d commit 9d9a0eb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java: [1.8, 11, 14, 15]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Run tests
run: sbt test
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Kaitai Struct: compiler

![Build Status](https://img.shields.io/github/workflow/status/kaitai-io/kaitai_struct_compiler/test)
[![Maven Central](https://img.shields.io/maven-central/v/io.kaitai/kaitai-struct-compiler_2.12)](https://search.maven.org/artifact/io.kaitai/kaitai-struct-compiler_2.12)

[![npm@latest](https://img.shields.io/npm/v/kaitai-struct-compiler/latest)](https://www.npmjs.com/package/kaitai-struct/v/latest)
Expand Down

0 comments on commit 9d9a0eb

Please sign in to comment.