File tree Expand file tree Collapse file tree 3 files changed +17
-14
lines changed
Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,11 @@ jobs:
4444 id: check
4545 shell: bash
4646
47- - run : |
48- rustup update stable
49- rustup default stable
50- rustup target add ${{ matrix.target }}
47+ - run : rustup update stable
48+
49+ - run : rustup default stable
50+
51+ - run : rustup target add ${{ matrix.target }}
5152
5253 - run : |
5354 SRC="target/${{ matrix.target }}/release/trf${{ steps.check.outputs.ext }}"
Original file line number Diff line number Diff line change @@ -15,13 +15,19 @@ jobs:
1515 steps :
1616 - uses : actions/checkout@v4
1717
18- - run : |
19- rustup update stable
20- rustup default stable
18+ - run : rustup update stable
19+
20+ - run : rustup default stable
2121
22- - uses : Swatinem/rust- cache@v2
22+ - uses : actions/ cache@v4
2323 with :
24- prefix-key : ' test'
24+ path : |
25+ ~/.cargo/bin/
26+ ~/.cargo/registry/index/
27+ ~/.cargo/registry/cache/
28+ ~/.cargo/git/db/
29+ target/
30+ key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2531
2632 - run : |
2733 echo "DEEPINFRA_KEY=${{ secrets.DEEPINFRA_KEY }}" > test.env
Original file line number Diff line number Diff line change @@ -30,11 +30,7 @@ enum Commands {
3030}
3131
3232#[ derive( Parser ) ]
33- #[ command(
34- author,
35- version,
36- about = "Ask the Terminal Anything - Use AI in the terminal"
37- ) ]
33+ #[ command( author, version, about = "Multimodal AI command line interface" ) ]
3834struct Arguments {
3935 #[ command( subcommand) ]
4036 command : Commands ,
You can’t perform that action at this time.
0 commit comments