diff options
| author | sigoden <sigoden@gmail.com> | 2024-05-19 22:43:49 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-19 22:43:49 +0800 |
| commit | 03c4b6982293c5be31d7eda89b6dcb8c1a7a8059 (patch) | |
| tree | a2d48d189dcbe242ab69b174c734db4e70d502a2 /.github/workflows | |
| parent | be279dcd322da7f84bb6451f10456b19a979e9ad (diff) | |
| download | llm-functions-docker-03c4b6982293c5be31d7eda89b6dcb8c1a7a8059.tar.gz | |
feat: supports functions in bash/js/python/ruby (#6)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yaml | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8518a2d..2dbea9f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,10 +16,14 @@ jobs: all: name: All - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: extractions/setup-crate@v1 with: @@ -29,5 +33,18 @@ jobs: - name: Check versions run: argc version - - name: Check scripts - run: argc build
\ No newline at end of file + - name: Setup Node.js + uses: actions/setup-node@v4 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' + + - name: Run Test + run: argc test
\ No newline at end of file |
