Skip to content

Commit

Permalink
Migrate away from Travis CI towards GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-schlichtherle committed Jan 30, 2021
1 parent 7e9c863 commit 53dce4d
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 46 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#
# Copyright © 2005 - 2021 Schlichtherle IT Services.
# All rights reserved. Use is subject to license terms.
#
jobs:
build:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/[email protected]
with:
path: project/.*
key: sbt-${{ hashFiles('*.sbt', 'project/*') }}
- run: bash sbtx -no-share -batch test
strategy:
matrix:
java: [8, 15]
name: test
on: [pull_request, push]
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# TrueVFS [![Maven Central](https://img.shields.io/maven-central/v/net.java.truevfs/truevfs-kernel-spec.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.java.truevfs%22) [![Build Status](https://api.travis-ci.org/christian-schlichtherle/truevfs.svg)](https://travis-ci.org/christian-schlichtherle/truevfs)
[![Release Notes](https://img.shields.io/github/release/christian-schlichtherle/truevfs.svg)](https://github.com/christian-schlichtherle/truevfs/releases/latest)
[![Maven Central](https://img.shields.io/maven-central/v/net.java.truevfs/truevfs-access.svg)](https://search.maven.org/artifact/net.java.truevfs/truevfs-access)
[![Apache License 2.0](https://img.shields.io/github/license/christian-schlichtherle/truevfs.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![Test Workflow](https://github.com/christian-schlichtherle/truevfs/workflows/test/badge.svg)](https://github.com/christian-schlichtherle/truevfs/actions?query=workflow%3Atest)

# TrueVFS

TrueVFS is a virtual file system (VFS) for Java 8 which enables client applications to access archive files as if they
were virtual directories, including nested archive files in multithreaded environments.
Expand Down
17 changes: 0 additions & 17 deletions docker-sbtx

This file was deleted.

0 comments on commit 53dce4d

Please sign in to comment.