Skip to content

Merge pull request #28 from ubnt-intrepid/bump-dependencies #11

Merge pull request #28 from ubnt-intrepid/bump-dependencies

Merge pull request #28 from ubnt-intrepid/bump-dependencies #11

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
env:
CARGO_TERM_VERBOSE: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run test
run: cargo test