Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ditch docker from CI #1675

Open
wants to merge 14 commits into
base: develop-1.9
Choose a base branch
from
42 changes: 17 additions & 25 deletions .github/workflows/doc-qa.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
name: Doc QA
on:
# Triggers the workflow on pull request events for the main branch
pull_request_target:
types:
- opened

permissions:
pull-requests: write
on:
push:
branches:
- main
- develop
- develop-1.9
pull_request:
branches:
- develop
- develop-1.9

concurrency:
# Here the group is defined by the head_ref of the PR
group: ${{ github.workflow }}-${{ github.head_ref }}
# Here we specify that we'll cancel any "in progress" workflow of the same group. Thus if we push, ammend a commit and push
# again the previous workflow will be cancelled, thus saving us github action build minutes and avoid any conflicts
cancel-in-progress: true

jobs:
pyspell:
runs-on: ubuntu-latest
steps:
# Spellcheck
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: igsekor/[email protected]
name: Spellcheck

doctor-rst:
name: Lint (DOCtor-RST)
runs-on: ubuntu-latest
Expand All @@ -44,10 +43,3 @@ jobs:
uses: docker://oskarstark/doctor-rst:1.23.0
with:
args: --short --error-format=github --cache-file=/github/workspace/.cache/doctor-rst.cache

documentation-preview:
runs-on: ubuntu-latest
steps:
- uses: readthedocs/actions/preview@v1
with:
project-slug: "datacube-core"
86 changes: 0 additions & 86 deletions .github/workflows/lint.yaml

This file was deleted.

Loading
Loading