Add S3 tests to ensure dot segments are preserved #774
Workflow file for this run
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: ["develop"] | |
pull_request: | |
branches: ["develop"] | |
schedule: | |
- cron: "0 0 * * 5" | |
permissions: "read-all" | |
jobs: | |
analyze: | |
name: "Analyze" | |
runs-on: "ubuntu-latest" | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: "Checkout repository" | |
uses: "actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608" | |
- name: "Run CodeQL init" | |
uses: "github/codeql-action/init@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa" | |
with: | |
config-file: "./.github/codeql.yml" | |
languages: "python" | |
- name: "Run CodeQL autobuild" | |
uses: "github/codeql-action/autobuild@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa" | |
- name: "Run CodeQL analyze" | |
uses: "github/codeql-action/analyze@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa" |