I changed the broken datetime _from_millis into timedelta_from_milis.… #401
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: CodeQL | |
on: | |
push: | |
branches: ["master"] | |
paths: | |
- ".github/workflows/codeql.yml" | |
- "**.py" | |
- "poetry.lock" | |
- "pyproject.toml" | |
pull_request: | |
paths: | |
- ".github/workflows/codeql.yml" | |
- "**.py" | |
- "poetry.lock" | |
- "pyproject.toml" | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: github/codeql-action/init@v2 | |
with: | |
languages: python | |
- uses: github/codeql-action/analyze@v2 |