This action installs the ReSharper Command Line Tools for use in other GitHub actions.
This repo is built upon the previous work of goIT & jozefizso's setup-resharper
action.
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...