Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Credential Providers Refactoring #65

Credential Providers Refactoring

Credential Providers Refactoring #65

Workflow file for this run

name: Main Pull Request Tests
on:
pull_request:
branches:
- 'main'
paths-ignore:
- '.github/**'
- 'docs/**'
- '**.md'
permissions:
contents: read
jobs:
setup-env:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install
run: make install
- name: Lint Checker
run: make lint
- name: Tests
run: make test
# exp-integration-tests:
# continue-on-error: true
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Setup Python
# uses: actions/setup-python@v4
# with:
# python-version: '3.9'
# cache: 'pip'
# - name: Install
# run: make install
# - name: Run Integration Tests
# run: make test-all
# env:
# JAMF_PRO_HOST: ${{ vars.JAMF_PRO_HOST }}
# JAMF_PRO_CLIENT_ID: ${{ vars.JAMF_PRO_CLIENT_ID }}
# JAMF_PRO_CLIENT_SECRET: ${{ vars.JAMF_PRO_CLIENT_SECRET }}