From 4df3d9c2112ecc9e1e49fd074a51513bd1673024 Mon Sep 17 00:00:00 2001 From: Yuri Becker Date: Tue, 28 Jan 2025 00:02:43 +0100 Subject: [PATCH] WIP --- .github/workflows/test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..a082d57 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: Test + +on: + push: + pull_request: + +env: + CARGO_TERM_COLOR: always + +jobs: + test: + name: Test + runs-on: ubuntu-latest + container: + image: xd009642/tarpaulin:latest + options: --security-opt seccomp=unconfined + steps: + - uses: actions/checkout@v4 + - name: Test and Generate Coverage + run: cargo tarpaulin --verbose --timeout 120 --jobs 1 --coveralls ${{secrets.COVERALLS_TOKEN}} + +