diff options
author | Mustafa Salih <37256744+MustafaSalih1993@users.noreply.github.com> | 2021-01-03 08:01:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 08:01:31 +0300 |
commit | ff8ccbd2ca6bcb7e3e4055651c8354e2e18d6cfa (patch) | |
tree | c8f0402a1e0dc6e3eab084867383bb30250e8811 | |
parent | 2de98ee8b41b000a2de444fdbd59d263f16a25fe (diff) |
Create rust.yml
-rw-r--r-- | .github/workflows/rust.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..75959c5 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,20 @@ +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 |