From 3aa43394cc760e3ff257c45a328b151da01b7edc Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Mon, 27 May 2024 14:21:27 -0400 Subject: Update docs.yml --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c563bf5..5a0381a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,7 +1,7 @@ name: Docs on: push: - branches: [main] + branches: [master] permissions: contents: read pages: write -- cgit v1.2.3 From a6b0ef5354872eb59242daf2397af5c36e9c3d1c Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Mon, 27 May 2024 14:23:00 -0400 Subject: Update docs.yml --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5a0381a..19fab14 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,7 +28,7 @@ jobs: - name: Build docs run: cargo doc --no-deps - name: Add redirect - run: echo '' > target/doc/index.html + run: echo '' > target/doc/index.html - name: Remove lock file run: rm target/doc/.lock - name: Upload artifact -- cgit v1.2.3 From 2d798abe12c1a80cbd5011a8a1f2b18ee5d84e2d Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Mon, 27 May 2024 14:24:51 -0400 Subject: Create rust.yml --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..000bb2c --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose -- cgit v1.2.3