Skip to content

Merge pull request #11 from tpoisonooo/fix-arm-32bit #28

Merge pull request #11 from tpoisonooo/fix-arm-32bit

Merge pull request #11 from tpoisonooo/fix-arm-32bit #28

Workflow file for this run

on: [push, pull_request]
name: CI
permissions:
contents: read
pages: write
id-token: write
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
- name: Generate docs
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps
- name: Upload docs artifact
uses: actions/upload-artifact@v3
with:
name: docs
path: target/doc