[go: up one dir, main page]

wildmatch 1.0.1

Simple string matching with questionmark and star wildcard operator.
Documentation
stages:
    - build
  
link-checker-mlc:
    stage: build
    image: rust:latest
    script:
        - curl -L https://github.com/becheran/mlc/releases/download/v0.6.4/mlc -o mlc
        - chmod +x mlc
        - ./mlc
    allow_failure: true

build-rust-nightly:
    stage: build
    image: rustlang/rust:nightly
    script:
        - cargo build --verbose
        - cargo test --verbose
    allow_failure: true