Skip to content

Commit

Permalink
use dependabot, update CI triggers, fix RTD builds (#5)
Browse files Browse the repository at this point in the history
* Create dependabot.yml for github actions updates
* Update .readthedocs.yml to fix RTD builds
* don't trigger build CI twice in a PR
  • Loading branch information
2bndy5 authored Sep 28, 2023
1 parent 89530bd commit 3eee394
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# 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"
# Workflow files stored in the
# default location of `.github/workflows`
directory: "/"
schedule:
interval: "weekly"
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Build CI

on:
pull_request:
types: [opened, reopened]
branches: [master]
push:
branches: [master]

jobs:
build-wheel:
Expand Down
8 changes: 6 additions & 2 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
version: 2

build:
os: "ubuntu-22.04"
tools:
python: "3.11"

python:
version: 3
install:
- requirements: docs/requirements.txt
- method: pip
path: .
path: .

0 comments on commit 3eee394

Please sign in to comment.