Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
name: codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: python3 -m pip install codespell
- run: codespell
11 changes: 6 additions & 5 deletions .github/workflows/tacd-daemon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: rustup toolchain install stable
- run: cargo fmt --all -- --check

Expand All @@ -34,7 +34,7 @@ jobs:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: sudo apt update
- run: sudo apt install libsystemd-dev libiio-dev
- run: rustup toolchain install stable
Expand All @@ -46,11 +46,12 @@ jobs:
matrix:
version:
- "1.84" # Yocto walnascar
- "1.90" # Yocto whinlatter
- "nightly"
name: cargo check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: sudo apt update
- run: sudo apt install libsystemd-dev libiio-dev
- run: rustup toolchain install ${{ matrix.version }}
Expand All @@ -60,7 +61,7 @@ jobs:
name: cargo deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: rustup toolchain install stable
- run: cargo install --locked cargo-deny
- run: cargo deny check
Expand All @@ -69,7 +70,7 @@ jobs:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: sudo apt update
- run: sudo apt install libsystemd-dev libiio-dev
- run: rustup toolchain install stable
Expand Down
23 changes: 12 additions & 11 deletions .github/workflows/tacd-webui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22.15.0
node-version: "24.11"
- run: npx prettier@=3.3.3 --check .

license:
Expand All @@ -40,10 +40,10 @@ jobs:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22.15.0
node-version: "24.11"
- name: npx license-checker
run: >
npx license-checker --summary --excludePrivatePackages --onlyAllow
Expand All @@ -55,14 +55,15 @@ jobs:
matrix:
version:
- "22.14.0" # Yocto walnascar
- "22.21.1" # Yocto whinlatter
name: npm run build
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.version }}
- run: npm ci
Expand All @@ -75,9 +76,9 @@ jobs:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22.15.0
node-version: "24.11"
- run: npm ci
- run: npm run test