Skip to content

get_type is unused

get_type is unused #99

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
rust:

Check failure on line 13 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install xmllint
run: |
sudo apt update
sudo apt-get install -y libxml2-utils
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose