From b26cd0f8c846d3555a162179c3a5886c4bf451f8 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Wed, 3 Mar 2021 06:57:14 -0600 Subject: [PATCH] test rust toolchain windows workflow --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..599e5b6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,9 @@ +on: [push] + +jobs: + build: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 +# vim: set ts=2 tw=2 sw=2 et :