Skip to content

Commit

Permalink
Update dependabot, actions, and the readme. (#976)
Browse files Browse the repository at this point in the history
* Test on the latest macos-14 runners.

These should be faster than the current macos-latest.

* Automatically update GitHub actions versions with dependabot.

Adjust dependabot PRs to a weekly schedule with a limit on the active PRs to reduce noise.

* Mention the discussion board in the README.

* Use latest github actions versions.

* Switch back to macos-latest on failing builds.
  • Loading branch information
joaander committed Feb 12, 2024
1 parent 2e9a23b commit 07cd69a
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
18 changes: 16 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,21 @@ updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 10
interval: "weekly"
time: "07:00"
timezone: "EST5EDT"
open-pull-requests-limit: 2
reviewers:
- glotzerlab/signac-maintainers
- package-ecosystem: "github-actions"
directory: "/"
target-branch: main
schedule:
interval: "weekly"
time: "07:00"
timezone: "EST5EDT"
pull-request-branch-name:
separator: "-"
reviewers:
- glotzerlab/signac-maintainers
open-pull-requests-limit: 2
4 changes: 2 additions & 2 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ jobs:
os: 'ubuntu-latest'
python: '3.12'
dependencies: 'minimal'
- os: 'macos-latest'
- os: 'macos-14'
python: '3.12'
dependencies: 'minimal'
- os: 'windows-latest'
python: '3.12'
dependencies: 'minimal'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install newest dependencies
Expand All @@ -87,6 +87,6 @@ jobs:
- name: Test with pytest
run: |
pytest --cov=signac --cov-config=pyproject.toml --cov-report=xml tests/ -v
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ This makes it easier to operate on large data spaces, streamlines post-processin
Examples, tutorials, topic guides, and package Python APIs.
- [Package documentation](https://docs.signac.io/projects/core/):
API reference for the **signac** package.
- [Slack Chat Support](https://signac.io/slack-invite/):
Get help and ask questions on the **signac** Slack workspace.
- [Discussion board](https://github.com/glotzerlab/signac/discussions/):
Ask the **signac** user community for help.
- [Slack workspace](https://signac.io/slack-invite/):
Chat about **signac**.
- [**signac** website](https://signac.io/):
Framework overview and news.

Expand Down

0 comments on commit 07cd69a

Please sign in to comment.