Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.39 KB

README.md

File metadata and controls

43 lines (35 loc) · 1.39 KB

Setup ReSharper Command Line Tools

setup-resharper status

This action installs the ReSharper Command Line Tools for use in other GitHub actions.

Acknowledgements

This repo is built upon the previous work of goIT & jozefizso's setup-resharper action.

Usage

name: "workflow name"
on: pull_request

jobs:
  do-something:
    runs-on: ${{ matrix.operating-system }}
    strategy:
      matrix:
        operating-system: [ubuntu-latest, windows-latest, macos-latest]
    steps:
      - uses: actions/checkout@v2
      - name: Set up ReSharper CLT with latest version
        uses: igotinfected/setup-resharper@latest
      # ReSharper CLT commands are now available...

  do-something-else:
    runs-on: ${{ matrix.operating-system }}
    strategy:
      matrix:
        operating-system: [ubuntu-latest, windows-latest, macos-latest]
    steps:
      - uses: actions/checkout@v2
      - name: Set up ReSharper CLT with specific version
        uses: igotinfected/setup-resharper@latest
        with:
          version: "2022.2.4"
      # ReSharper CLT commands are now available...