Setup nbgrader in one class, one grader mode #739
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: Ansible Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main, grader] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Deps | |
run: pip install -r requirements.txt | |
- name: Lint Ansible Playbook | |
run: ansible-lint --profile min --force-color research-cloud-plugin.yml shared-data-disk.yml |