diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bb93437..fc41ba9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,12 +8,11 @@ jobs: steps: - uses: actions/checkout@v2 - - - run: rustup toolchain install nightly - - name: Build Test.class - run: javac testdata/Test.java - - - name: Run + - name: Build working-directory: crates/file-info/ - run: cargo +nightly run ../../testdata/Test.class + run: cargo build + + - name: Test + working-directory: crates/file-info/ + run: cargo test