Merge pull request #27 from zong-zhe/add-deployment-strategy #52
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: test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: KCL Installation | |
run: wget -q https://kcl-lang.io/script/install-cli.sh -O - | /bin/bash | |
- name: Example tests | |
shell: bash -ieo pipefail {0} | |
run: ./scripts/test.sh |