-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #295 from simonsobs/develop
Release v0.3.1
- Loading branch information
Showing
98 changed files
with
7,249 additions
and
2,762 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[flake8] | ||
max_line_length = 80 | ||
ignore = E501 | ||
in-place = true | ||
recursive = true | ||
aggressive = 2 | ||
exclude = | ||
agents/meinberg_m1000/mibs/MBG-SNMP-LTNG-MIB.py | ||
agents/meinberg_m1000/mibs/SNMPv2-MIB.py | ||
agents/meinberg_m1000/mibs/MBG-SNMP-ROOT-MIB.py |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Run Tests | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'docs/**' | ||
- '*.rst' | ||
- '*.md' | ||
- '.flake8' | ||
- '.pre-commit-config.yaml' | ||
|
||
jobs: | ||
test: | ||
name: pytest with coverage | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- run: 'echo "No build required" ' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Test Docker Build | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'docs/**' | ||
- '*.rst' | ||
- '*.md' | ||
- '.flake8' | ||
- '.pre-commit-config.yaml' | ||
|
||
jobs: | ||
build: | ||
name: test image build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- run: 'echo "No build required" ' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Test Docker Build | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'docs/**' | ||
- '*.rst' | ||
- '*.md' | ||
- '.flake8' | ||
- '.pre-commit-config.yaml' | ||
|
||
jobs: | ||
build: | ||
name: test image build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Fetch all history for all tags and branches | ||
- name: clone socs | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Dockerize | ||
- name: Build docker images | ||
run: | | ||
docker-compose build |
Oops, something went wrong.