aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/deps.yml
blob: 344131f2049c1a8ef1e002696168c9620deb2860 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Bump deps

on:
  workflow_dispatch:
jobs:
  latest_deps:
    name: Latest Dependencies
    runs-on: ubuntu-latest
    continue-on-error: true
    steps:
      - uses: actions/checkout@v3
      - run: rustup update stable && rustup default stable
      - run: cargo update --verbose
      - run: cargo build --verbose
      - run: cargo test --verbose