Skip to content

docs action

docs action #4

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install cmake
run: sudo apt-get install cmake
- name: Checkout submodules
run: |
git submodule init
git submodule update
- name: Build
run: cargo build --all-features --verbose
- name: Run tests
run: cargo test --all-features --verbose