Basic support for saving as MHTML, refactor code and fix bugs #77
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CI NetBSD GitHub Actions workflow for monolith | |
| name: CI (NetBSD) | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| paths-ignore: | |
| - 'assets/' | |
| - 'dist/' | |
| - 'snap/' | |
| - 'Dockerfile' | |
| - 'LICENSE' | |
| - 'Makefile' | |
| - 'monolith.nuspec' | |
| - 'README.md' | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| name: Build and test (netbsd) | |
| steps: | |
| - name: "Checkout repository" | |
| uses: actions/checkout@v4 | |
| - name: Test in NetBSD | |
| uses: vmactions/netbsd-vm@v1 | |
| with: | |
| usesh: true | |
| prepare: | | |
| /usr/sbin/pkg_add cwrappers gmake mktools pkgconf rust | |
| run: | | |
| cargo build --all --locked --verbose --no-default-features --features cli | |
| cargo test --all --locked --verbose --no-default-features --features cli |