Update html5ever requirement from 0.26 to 0.27 #124
Workflow file for this run
This file contains 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
name: CI | |
on: | |
# Only run when merging to master, or open/synchronize/reopen a PR. | |
push: | |
branches: | |
- master | |
- staging | |
- trying | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
rust: ["1.66.0", "stable", "beta"] | |
build_flags: ["", "--cfg ammonia_unstable"] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@master | |
- name: Set toolchain | |
run: | | |
rustup set profile minimal | |
rustup override set ${{ matrix.rust }} | |
- name: Test | |
run: cargo test | |
env: | |
RUSTFLAGS: ${{ matrix.build_flags }} | |
ci-success: | |
name: ci | |
if: ${{ success() }} | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- name: CI succeeded | |
run: exit 0 |