From c807dc82489b7a1435e28c23685a863e926b64da Mon Sep 17 00:00:00 2001 From: devark28 Date: Fri, 14 Nov 2025 19:24:31 +0200 Subject: [PATCH] ci: add GitHub actions workflow for PR testing --- .github/workflows/test.yml | 15 +++++++++++++++ .idea/envmn.iml | 1 + 2 files changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..4f5802b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Test + +on: + pull_request: + branches: [master] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - run: cargo test \ No newline at end of file diff --git a/.idea/envmn.iml b/.idea/envmn.iml index cf84ae4..bbe0a70 100644 --- a/.idea/envmn.iml +++ b/.idea/envmn.iml @@ -3,6 +3,7 @@ +