diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-01 11:05:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-01 11:05:27 +0100 |
| commit | 43d93e4b681004198c82935e11c89d7299938a80 (patch) | |
| tree | b548ee744f8d69ad4ba68ffda144704382df4b86 | |
| parent | 8cf92ff7ed32ceda9d4a2518a784467595c36db5 (diff) | |
| download | sylt-43d93e4b681004198c82935e11c89d7299938a80.tar.gz | |
Create rust.yml
| -rw-r--r-- | .github/workflows/rust.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..d09f364 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,21 @@ +name: Rust + +on: + push: + branches: [ main ] + pull_request: + +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 |
