From 48aa35ac104de0ef4282c95ee17ec6d18303cdea Mon Sep 17 00:00:00 2001 From: EpicPix <48453873+EpicPix@users.noreply.github.com> Date: Sat, 30 Oct 2021 15:50:46 +0200 Subject: [PATCH] Create workflow --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0c560bc --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Build Test.class + run: javac testdata/Test.java + + - name: Run + working-directory: crates/file-info/ + run: cargo +nightly run ../../testdata/Test.class