[go: up one dir, main page]

wildmatch 1.0.3

Simple string matching with questionmark and star wildcard operator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
stages:
    - build
  
link-checker-mlc:
    stage: build
    image: rust:latest
    script:
        - curl -L https://github.com/becheran/mlc/releases/download/v0.7.0/mlc -o mlc
        - chmod +x mlc
        - ./mlc --ignore-links "http*://crates.io*"

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