point to sm logo #586
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: | |
push: | |
branches-ignore: ["dependabot/**"] | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: ${{ matrix.os }} py${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.10', '3.11', '3.12'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: mamba-org/setup-micromamba@v2 | |
with: | |
init-shell: bash | |
environment-file: "environment.yml" | |
environment-name: "silvimetric" | |
create-args: >- | |
python=${{ matrix.python-version }} | |
- name: "Install Test Framework" | |
run: pip install pytest pytest-click awscli | |
- name: "Install Package" | |
run: pip install . | |
- name: "Debug Info" | |
run: | | |
echo python location: `which python` | |
echo python version: `python --version` | |
echo pytest location: `which pytest` | |
echo installed packages | |
micromamba list | |
pip list | |
- name: Run Tests | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.SM_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.SM_AWS_SECRET_ACCESS_KEY }} | |
run: | | |
pytest -vv --durations=0 | |
analyze: | |
name: analyze | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: mamba-org/setup-micromamba@v2 | |
with: | |
init-shell: bash | |
environment-file: "environment.yml" | |
environment-name: "silvimetric" | |
- name: Config CodeQL | |
run: | | |
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: 'python' | |
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] | |
# If you wish to specify custom queries, you can do so here or in a config file. | |
# By default, queries listed here will override any specified in a config file. | |
# Prefix the list here with "+" to use these queries and those in the config file. | |
queries: +security-and-quality | |
setup-python-dependencies: false | |