feat: added kerberos test #21
Workflow file for this run
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-ignore: | |
- 'master' | |
- 'develop' | |
pull_request: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '14' | |
- name: Install goss and dgoss | |
run: | | |
curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o $HOME/goss | |
chmod +rx $HOME/goss | |
curl -L https://github.com/aelsabbahy/goss/releases/latest/download/dgoss -o $HOME/dgoss | |
chmod +rx $HOME/dgoss | |
- name: Login to Dockerhub | |
run: docker login -u ${{ secrets.DOCKER_USER }} -p "${{ secrets.DOCKER_PASSWORD }}" | |
- name: Add HOME directory to PATH | |
run: echo "$HOME" >> $GITHUB_PATH | |
- name: Build and test image | |
run: ./build-latest.sh ${{ secrets.BASE_IMAGE }} ${{ secrets.BASE_IMAGE_VERSION }} |