Remove version numbers from Cargo.toml dependencies #24
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: Test | |
on: | |
push: | |
branches-ignore: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get -y install autoconf automake autopoint build-essential | |
- name: Bootstrap | |
run: ./bootstrap | |
- name: Configure | |
run: ./configure | |
- name: Build Rust gzip | |
run: cargo build | |
- name: Test | |
run: make -C tests check |