CI / macOS (push) Waiting to run
CI / Windows (push) Waiting to run
CI / Linux (push) Failing after 6s
24 lines
696 B
Markdown
24 lines
696 B
Markdown
# GitHub Action to install DotSlash
|
|
|
|
[<img alt="build status" src="https://img.shields.io/github/actions/workflow/status/facebook/install-dotslash/ci.yml?branch=latest&style=for-the-badge" height="20">](https://github.com/facebook/install-dotslash/actions?query=branch%3Alatest)
|
|
|
|
This GitHub Action installs a precompiled `dotslash` binary from
|
|
<https://github.com/facebook/dotslash/releases>.
|
|
|
|
```yaml
|
|
name: test suite
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: facebook/install-dotslash@latest
|
|
- run: ./some_dotslash_file
|
|
```
|
|
|
|
## License
|
|
|
|
`install-dotslash` is MIT licensed, as found in the LICENSE file.
|