diff options
| author | Mariot Tsitoara <[email protected]> | 2021-12-10 15:46:52 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-10 15:46:52 +0000 |
| commit | 5265b75001204ac1fd663e5aa1b97f0428861450 (patch) | |
| tree | 31ae94dda97f555fa740b15dc3bd1fb6dadf80f7 | |
| parent | Remove useless slashes (diff) | |
| download | chan-downloader-5265b75001204ac1fd663e5aa1b97f0428861450.tar.xz chan-downloader-5265b75001204ac1fd663e5aa1b97f0428861450.zip | |
Create rust.yml
| -rw-r--r-- | .github/workflows/rust.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..3c13d1b --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose |