Skip to content

Commit

Permalink
Merge 3b49d89 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 3, 2024
2 parents affa84a + 3b49d89 commit eb41aba
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
- name: Deploy artifacts
uses: actions/upload-pages-artifact@v3
with:
path: "./target/doc"
path: "./target/doc"

deploy:

name: Deploy
needs: build
needs: build

permissions:
pages: write
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/requests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test PR

on: pull_request

jobs:

test:

name: Test
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Rust toolchain
run: rustup update --no-self-update stable

- name: Build library
run: cargo build --verbose

- name: Test library
run: cargo test --verbose
7 changes: 3 additions & 4 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Testing

on:
pull_request
# - push:
# branches: [development]
on:
push:
branches: [development]

jobs:

Expand Down

0 comments on commit eb41aba

Please sign in to comment.