Add anthropic provider #2594
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: "Fractl cljs CI" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
jobs: | |
test_cljs: | |
if: ${{ false }} # remove to enable workflow | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Installing fractl-io dependancies | |
run: | | |
git clone https://${{ secrets.REPO_READ_WRITE_TOKEN }}@github.com/fractl-io/fractl-config-secrets-reader | |
cd fractl-config-secrets-reader | |
lein install | |
- name: Install dependencies | |
run: lein deps | |
- name: Run cljs test | |
run: lein fig:ci | |
- name: Run cljs reagent test | |
run: lein fig:rci | |
- name: Clean target | |
run: lein clean |