Skip to content

Added __repr__() methods for all Renderables #37

Added __repr__() methods for all Renderables

Added __repr__() methods for all Renderables #37

Workflow file for this run

# This workflow analyzes the Python code in the repository for vulnerabilities
name: "CodeQL Python"
on:
workflow_dispatch:
push:
branches: [ "master" ]
paths:
- goopylib/**
pull_request:
branches: [ "master" ]
paths:
- goopylib/**
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ "python" ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"