Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHA-based in-docker testing #2121

Merged
merged 25 commits into from Dec 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .editorconfig
Expand Up @@ -21,4 +21,8 @@ indent_size = 4
# Never use star imports
ij_java_names_count_to_use_import_on_demand = 99
ij_java_class_count_to_use_import_on_demand = 99
ij_java_layout_static_imports_separately = true
ij_java_layout_static_imports_separately = true

[*.{yml, yaml}]
indent_size = 2
ij_yaml_keep_indents_on_empty_lines = false
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,21 @@
name: CI

on:
pull_request: {}
push: { branches: [ master ] }

jobs:
in-docker_test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Build with Gradle
run: |
docker run -i --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
-v "$HOME:$HOME" \
-v "$PWD:$PWD" \
-w "$PWD" \
openjdk:8-jdk-alpine \
./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'

60 changes: 0 additions & 60 deletions .travis.yml

This file was deleted.