Skip to content

ci(release): bump cosign version #3

ci(release): bump cosign version

ci(release): bump cosign version #3

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
paths-ignore:
- 'README.md'
- 'requirements.txt'
- 'credentials/**'
- 'docs/**'
- '.gitignore'
- 'LICENSE'
tags-ignore:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint Python files with flake8
run: |
flake8 --ignore=E501,E23,W503 .
- name: Lint Dockerfile
run: |
docker run --rm -i hadolint/hadolint < Dockerfile