-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (52 loc) · 1.43 KB
/
Copy pathmutation.yml
File metadata and controls
55 lines (52 loc) · 1.43 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
50
51
52
53
54
55
name: Mutation
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * 1'
jobs:
javascript-mutation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v6
with:
node-version: 22
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run full Stryker sweep
run: bun run mutation:js:full
rust-mutation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Linux desktop dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
curl \
file \
pkg-config \
libdbus-1-dev \
libglib2.0-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
libssl-dev \
libwebkit2gtk-4.1-dev \
libxdo-dev \
librsvg2-dev \
patchelf \
wget
- uses: oven-sh/setup-bun@v2
- uses: dtolnay/rust-toolchain@1.94.1
- uses: Swatinem/rust-cache@v2
with:
workspaces: src-tauri -> target
- uses: taiki-e/install-action@v2
with:
tool: protoc,cargo-mutants
- name: Install package metadata
run: bun install --frozen-lockfile
- name: Run full Rust mutation sweep
run: bun run mutation:rust:full