Skip to content

Commit

Permalink
Merge 0365c90 into 488e71a
Browse files Browse the repository at this point in the history
  • Loading branch information
juarezr committed Mar 14, 2024
2 parents 488e71a + 0365c90 commit c8ccbb7
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 16 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/codacy-analysis.yml
Expand Up @@ -16,16 +16,26 @@ name: Codacy Security Scan
on:
schedule:
- cron: '59 11 27 * *'
push:
branches: [ "master" ]
# push:
# branches: [ "master" ]
# pull_request:
# # The branches below must be a subset of the branches above
# branches: [ "master" ]
workflow_run:
workflows: [Test Changes]
branches: [ "master" ]
types:
- completed
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug

permissions:
contents: read
Expand Down
16 changes: 13 additions & 3 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -14,15 +14,25 @@ name: "CodeQL"
on:
schedule:
- cron: '59 10 27 * *'
push:
branches: [ "master" ]
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
workflow_run:
workflows: [Test Changes]
branches: [ "master" ]
types:
- completed
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug

jobs:
analyze:
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/publish-release.yml
Expand Up @@ -3,9 +3,23 @@ name: release
on:
release:
types: [published]
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug

jobs:
pypi:
strategy:
matrix:
python: ['3.10']
runs-on: ubuntu-latest
steps:
- name: Checkout source code
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/test-changes.yml
Expand Up @@ -7,7 +7,7 @@ on:
push:
branches: [ "master" ]
pull_request:
types: [opened, reopened, synchronize, ready_for_review, labeled]
types: [opened, reopened, synchronize, ready_for_review] # labeled
workflow_dispatch:
inputs:
logLevel:
Expand All @@ -19,14 +19,14 @@ on:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
environment:
description: 'Environment to run tests against'
type: environment
required: true
# tags:
# description: 'Test scenario tags'
# required: false
# type: boolean
# environment:
# description: 'Environment to run tests against'
# type: environment
# required: true

jobs:
run-guard:
Expand Down
3 changes: 2 additions & 1 deletion requirements-formats.txt
Expand Up @@ -13,4 +13,5 @@ fastavro==0.24.2 ; python_version < '3.0'
gspread>=3.4.0 ; python_version >= '3.4'

# version 3.9.2 fails with python3.12 on macos-latest: PyTables/PyTables#1093
tables ; python_version != '3.12'
tables ; sys_platform != 'darwin'

0 comments on commit c8ccbb7

Please sign in to comment.