From 0d7296b0246f9f79faa132a151bbd1b8bf68e862 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Sat, 28 Sep 2019 22:34:03 -0700 Subject: [PATCH] Github actions hello world --- .github/workflows/validate-pr.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/validate-pr.yaml diff --git a/.github/workflows/validate-pr.yaml b/.github/workflows/validate-pr.yaml new file mode 100644 index 0000000..6da2dbc --- /dev/null +++ b/.github/workflows/validate-pr.yaml @@ -0,0 +1,14 @@ +name: Validate Pull Request +on: push + +jobs: + build: + name: Run Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: actions-rs/cargo@v1 + with: + command: test + toolchain: nightly + args: --release --all-features