Skip to content

chore(deps): update github/codeql-action digest to de74ca6 #1340

chore(deps): update github/codeql-action digest to de74ca6

chore(deps): update github/codeql-action digest to de74ca6 #1340

Workflow file for this run

# .github/workflows/ci.yaml
name: Nox-CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: "Python $({ matrix.python-version }) tests"
runs-on: ubuntu-latest
env:
USING_COVERAGE: '3.10'
strategy:
matrix:
python-version: ["3.8", "3.9","3.10"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@128a63446a954579617e875aaab7d2978154e969 # tag=v1.4
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: "Checkout"
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
with:
clean: true
- name: "Set up Python"
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4
with:
python-version: "${{ matrix.python-version }}"
architecture: x64
- run: pip install nox==2022.8.7
- run: pip install poetry==1.2.0
- run: pip install nox-poetry==1.0.1
- run: nox -p ${{ matrix.python-version }}
- name: "Post to codecov.io"
if: "contains(env.USING_COVERAGE, matrix.python-version)"
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: false