Skip to content
This repository was archived by the owner on Feb 24, 2024. It is now read-only.

Commit dd10585

Browse files
ci: switch to GitHub Actions
Signed-off-by: Wolfgang Walther <[email protected]>
1 parent 49ca91c commit dd10585

File tree

3 files changed

+46
-45
lines changed

3 files changed

+46
-45
lines changed

Diff for: .circleci/config.yml

-45
This file was deleted.

Diff for: .github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly

Diff for: .github/workflows/ci.yaml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- v*
8+
pull_request:
9+
branches:
10+
- main
11+
- v*
12+
13+
jobs:
14+
build:
15+
name: Build docs
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/[email protected]
19+
- uses: cachix/install-nix-action@v16
20+
- run: nix-env -f default.nix -iA build
21+
- run: postgrest-docs-build
22+
23+
spellcheck:
24+
name: Run spellcheck
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/[email protected]
28+
- uses: cachix/install-nix-action@v16
29+
- run: nix-env -f default.nix -iA spellcheck
30+
- run: postgrest-docs-spellcheck
31+
32+
linkcheck:
33+
name: Run linkcheck
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/[email protected]
37+
- uses: cachix/install-nix-action@v16
38+
- run: nix-env -f default.nix -iA linkcheck
39+
- run: postgrest-docs-linkcheck
40+

0 commit comments

Comments
 (0)