Update dependency typing-extensions to v3.10.0.2 #102
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches-ignore: [master, main] | |
pull_request: | |
branches: [master, main] | |
jobs: | |
super-linting: | |
name: Super Linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.3 | |
with: | |
fetch-depth: 0 | |
- name: Run Super-Linter | |
uses: github/super-linter/slim@v4 | |
env: | |
DEFAULT_BRANCH: master | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_DOCKERFILE: true | |
VALIDATE_DOCKERFILE_HADOLINT: true | |
build-check: | |
name: Build check | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.3 | |
- name: Verify image builds | |
run: docker build --tag infrawatch/prometheus-webhook-snmp:latest --file Dockerfile . | |