Skip to content

Update many things

Update many things #34

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- 'Dockerfile'
- '.dockerignore'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'README.md'
branches: [ "main" ]
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- '.github/**'
- '.gitignore'
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Add Wasm target
uses: rustup target add wasm32-unknown-unknown
- name: Build
run: cargo build --verbose && cargo build --target wasm32-unknown-unknown --verbose
- name: Run tests
run: cargo test --verbose
- name: Run doctests
run: cargo test --doc --verbose
- uses: actions/checkout@v1