Fixed search error in the documentation frontend #227
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: ci | |
on: | |
push: | |
pull_request: | |
jobs: | |
canary: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Container Canary | |
run: | | |
curl -L https://github.com/NVIDIA/container-canary/releases/download/v0.2.1/canary_linux_amd64 > /usr/local/bin/canary | |
chmod +x /usr/local/bin/canary | |
- name: Build Container | |
run: docker build -t bluesky/tiled:latest . | |
- name: Validate container | |
run: canary validate --file canary-validator.yml bluesky/tiled:latest |