Skip to content

Commit

Permalink
Update Workflow actions on push and pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
bonicim committed Sep 1, 2021
1 parent 3ea5b87 commit a34fed8
Show file tree
Hide file tree
Showing 8 changed files with 80 additions and 9 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/pytest-dbutils-backup_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,16 @@
name: Testing BackupDatabase

# Determine what events are going to trigger a running of the workflow
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pytest-dbutils-influxdbfuncts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@


name: Testing influxdbutils
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pytest-dbutils-postgresqlfuncts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@


name: Testing postgresqlfuncts
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pytest-dbutils-sqlitefuncts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@


name: Testing sqlitefuncts
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pytest-dbutils-timescaldbfuncts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@


name: Testing postgresql_timescaledb_functs
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pytest-testutils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,16 @@
# and retrieval of cache for quicker setup of test environments.

name: Testing testutils directory
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
build:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/pytest-vctl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,16 @@
name: Testing volttron-ctl

# Determine what events are going to trigger a running of the workflow
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
# The job named build
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/pytest-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@
# https://github.com/VOLTTRON/volttron/actions (or if you are pushing to your own fork change the user)
name: Testing platform web

# Determine what events are going to trigger a running of the workflow
on: [pull_request]
on:
push:
branches:
- develop
- releases/**
pull_request:
branches:
- main
- develop
- releases/**

jobs:
# The job named build
Expand Down

0 comments on commit a34fed8

Please sign in to comment.