diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-07-08 21:58:43 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-07-22 19:49:52 +0100 |
commit | 82dbd29a717f49804ec8307dd6af8c6f6ad9204a (patch) | |
tree | 739c1e270bfbcb8d0c775335c2523cfadbbd8dad /.github/workflows | |
parent | a32d41edd27b984de947009b939b1e12315a0ea6 (diff) | |
download | spacebeans-82dbd29a717f49804ec8307dd6af8c6f6ad9204a.tar.gz spacebeans-82dbd29a717f49804ec8307dd6af8c6f6ad9204a.zip |
Not in GH
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/actions.yaml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml deleted file mode 100644 index 0a78809..0000000 --- a/.github/workflows/actions.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: CI - -on: [push] - -jobs: - test: - strategy: - matrix: - java-version: [8, 11] - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: coursier/cache-action@v5 - - name: Set up JDK ${{ matrix.java-version }} - uses: actions/setup-java@v1 - with: - java-version: ${{ matrix.java-version }} - - name: Run tests - run: ./mill server.test - |