Skip to content

Merge pull request #19 from ypo/release/flute/1.1.5 #102

Merge pull request #19 from ypo/release/flute/1.1.5

Merge pull request #19 from ypo/release/flute/1.1.5 #102

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
rust:
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