Remove py based glcli and publish rs based glcli
#415
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: ClnVersionManager | |
on: | |
pull_request: | |
types: | |
- synchronize | |
- opened | |
workflow_dispatch: | |
merge_group: | |
push: | |
branches: | |
- main | |
jobs: | |
source: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "latest" | |
enable-cache: true | |
- name: Build | |
run: task clnvm:build | |
- name: Run tests | |
run: task clnvm:check |