Merge pull request #24 from erichlf/down-help #86
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
on: [push, pull_request] | |
name: default | |
env: | |
IMAGE_NAME: nvim-devcontainer-cli | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Pre-build devcontainer image | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ${{ env.IMAGE_NAME }} | |
cacheFrom: ${{ env.IMAGE_NAME }} | |
push: never | |
- name: Run tests inside the docker image | |
uses: devcontainers/[email protected] | |
with: | |
cacheFrom: ${{ env.IMAGE_NAME }} | |
push: never | |
runCmd: make test |