-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (46 loc) Β· 1.2 KB
/
test.yml
File metadata and controls
49 lines (46 loc) Β· 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Test
on:
push:
branches: [main]
pull_request:
merge_group:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
run-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Update rust toolchain
run: rustup update
- uses: actions/cache@v5
id: cargo-cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Build
if: steps.cargo-cache.outputs.cache-hit != 'true'
run: cargo build --release --verbose
- name: Run tests
run: cargo test --release --verbose
- name: E2E test
run: |
cargo install --path .
bash -euxo pipefail <<'EOF'
meowda init init.sh
source init.sh
meowda create test-venv -p 3.14
meowda activate test-venv
meowda install requests
meowda deactivate
EOF
cargo uninstall meowda