Skip to content

Commit d09abcf

Browse files
committed
Rewrite TabletBot to poise
- Uses serenity 0.12 (poise doesn't have a release targetting it yet) - Fixes the Nix build action.
1 parent f7c5fd6 commit d09abcf

File tree

18 files changed

+1813
-1554
lines changed

18 files changed

+1813
-1554
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ trim_trailing_whitespace = true
77
insert_final_newline = true
88
indent_style = space
99

10-
[**.{nix,sh,rs,toml}]
10+
[**.{nix,sh,toml}]
1111
indent_size = 2
12+
13+
[**.rs]
14+
indent_size = 4

.github/workflows/nix.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: cachix/install-nix-action@v18
11+
- uses: actions/checkout@v4
12+
- uses: cachix/install-nix-action@v24
1313
with:
1414
extra_nix_config: |
1515
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
1616
- uses: cachix/cachix-action@v12
17+
if: github.event_name == 'push'
1718
with:
1819
name: opentabletdriver
1920
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.build/
22
.history
33
result
4-
4+
target/
5+
state.json

0 commit comments

Comments
 (0)