Merge pull request #262 from kvjmistry/ELGain #425
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Install via docker and Test | |
on: | |
pull_request: | |
push: | |
jobs: | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Compile software | |
run: docker build -t nexus . | |
- name: Run tests | |
run: docker run nexus /nexus/docker/run_tests.sh |