Update pom.xml to target huit.artifactory (#395) #221
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build image | |
run: docker build -f docker/Dockerfile-test -t fits-test . | |
- name: Run tests | |
run: docker run -v `pwd`:/fits:z -v ~/.m2:/root/.m2:z fits-test mvn clean test |