Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add README.md #8

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# asdf-cairo-coverage

[cairo-coverage] plugin for the [asdf] version manager.

## Install

This plugin needs `bash`, `curl`, `tar` and other generic POSIX utilities.
Everything should be included by default on your system.

```shell
asdf plugin add cairo-coverage https://github.com/software-mansion/asdf-cairo-coverage.git
```

## Use

Show all installable versions:

```shell
asdf list-all cairo-coverage
```

Install latest version:

```shell
asdf install cairo-coverage latest
```

Install specific version:

```shell
asdf install cairo-coverage 0.2.0
```

Set a version globally (in your `~/.tool-versions` file):

```shell
asdf global cairo-coverage latest
```

Now cairo-coverage commands are available:

```shell
cairo-coverage --version
```

Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to install & manage versions.

[asdf]: https://asdf-vm.com

[cairo-coverage]: https://github.com/software-mansion/cairo-coverage
Loading