Skip to content

Commit

Permalink
First pass at an Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zpao committed Jan 8, 2020
1 parent ae2016d commit 7daf69a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,35 @@
name: Build

on:
- push

jobs:
linux-build:
strategy:
matrix:
os:
- ubuntu-16.04
# - ubuntu-18.04
java:
- 8
python-version:
- 3.6
- 2.7
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
-
name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
-
name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Display Java version
run: java --version
- name: Display Python version
run: python -c "import sys; print(sys.version)"

0 comments on commit 7daf69a

Please sign in to comment.