From ec7b373cd28019636b7a10710fced86467578c43 Mon Sep 17 00:00:00 2001 From: "Scott C. Livingston" Date: Mon, 10 Jun 2024 12:29:28 +0900 Subject: [PATCH] CI: first draft tests GitHub Action --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..687744a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +--- +# configuration for GitHub Actions +name: rerobots Rust client library tests +on: + push: + pull_request: +jobs: + build: + name: Build + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - name: Run tests + run: | + cargo test