From 4db0d15289e446e08f425ec77825215d1190813b Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 10 Aug 2021 16:18:13 -0700 Subject: [PATCH] Make GitHub Actions instructions more prominent (#944) --- README.adoc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.adoc b/README.adoc index 54c2a56..35d9219 100644 --- a/README.adoc +++ b/README.adoc @@ -130,6 +130,18 @@ You can use the following command on Linux, MacOS, or Windows to download the la curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to DEST ``` +=== GitHub Actions + +link:https://github.com/extractions/setup-just[extractions/setup-just] can be used to install `just` in a GitHub Actions workflow. + +Example usage: + +```yaml +- uses: extractions/setup-just@v1 + with: + just-version: 0.8 # optional semver specification, otherwise latest +``` + == Editor Support `justfile` syntax is close enough to `make` that you may want to tell your editor to use `make` syntax highlighting for `just`. @@ -1588,18 +1600,6 @@ Tools that pair nicely with `just` include: - https://github.com/mattgreen/watchexec[`watchexec`] — a simple tool that watches a path and runs a command whenever it detects modifications. -=== GitHub Actions - -link:https://github.com/extractions/setup-just[extractions/setup-just] can be used to install `just` in a GitHub Actions workflow. - -Example usage: - -```yaml -- uses: extractions/setup-just@v1 - with: - just-version: 0.8 # optional semver specification, otherwise latest -``` - === Shell Alias For lightning-fast command running, put `alias j=just` in your shell's configuration file.