Skip to content

Feature/44 add new alias #170

Feature/44 add new alias

Feature/44 add new alias #170

Workflow file for this run

name: Build and Test Module
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install Dependencies
shell: pwsh
run: "./install.ps1"
- name: Build
shell: pwsh
run: Invoke-Build Build
- name: Tests
shell: pwsh
run: Invoke-Build test -Output Normal
- name: Upload code coverage report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: "coverage.xml"
- name: Package Module
run: Compress-Archive -Path output/quickpath -DestinationPath quickpath.zip
shell: pwsh
- name: Upload Module
uses: actions/upload-artifact@v4
with:
name: "quickpath"
path: "quickpath.zip"