Skip to content

run cargo update

run cargo update #562

Workflow file for this run

name: CI
on:
push:
branches: ['master']
pull_request:
branches: ['master']
workflow_dispatch:
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix build -L
- run: ./result/bin/noematic-configure
- run: npm ci
- run: npx playwright install --with-deps chromium
- run: npm run check
- run: npm run test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30