Skip to content

fix(): add script to install from chocolatey #7

fix(): add script to install from chocolatey

fix(): add script to install from chocolatey #7

Workflow file for this run

name: Powershell CI
on:
push:
branches: [ "main" ]
tags: [ "v*.*.*" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "0 0 * * 0"
jobs:
lint:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint sources
shell: pwsh
run: ./Invoke-Linter.ps1 -exitCodeOnError
if: always()
- name: Check formatting
id: format
shell: pwsh
run: ./Invoke-Formatter.ps1 -exitCodeOnFormat
if: always()
- name: Formatting changes
run: git diff
if: always() && steps.format.outcome != 'success'