From 1650e7bf3443118db2768ec2ef217110786fda96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CA=87=CA=9E=CA=8Cp?= Date: Mon, 30 Dec 2019 20:30:44 -0800 Subject: [PATCH] =?UTF-8?q?GitHub=20Actions=E2=84=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rust.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..906fa33 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,26 @@ +name: Rust + +on: [push] + +jobs: + build-x86_64: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose + + build-macos: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose