Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 573 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 573 Bytes

install-nats-io-server-windows

Github action to install the NATS.io server from the head default branch

Notes

  • Works for runs-on: windows-*
  • Requires GO already setup. See example
  • Makes nats-server available in the path

Example

jobs:
  install-nats-io-server:
    runs-on: ubuntu-latest
    steps:
      - name: Setup GO
        uses: actions/setup-go@v2
        with:
          go-version: 1.16.3
      - name: Install Nats Server
        uses: scottf/install-nats-io-server-windows@v1
      - name: Run the server
        run: nats-server -v