Update fs mode to use --key-path CLI switch / key_path API argument (… #1405
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: | |
- '**' | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install conda | |
run: .github/scripts/install-conda.sh | |
- name: Make Docs | |
run: .github/scripts/make-docs.sh | |
- name: Format Check | |
run: .github/scripts/format-check.sh | |
- name: Test | |
run: .github/scripts/test.sh |