Skip to content

feat: implement the install_package_with_version tool #47

feat: implement the install_package_with_version tool

feat: implement the install_package_with_version tool #47

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- name: Format
run: |
nix develop -c -- make fmt
git diff --exit-code
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- name: Lint
run: |
nix develop -c -- make lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- name: Test
run: |
nix develop -c -- make test