-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 939 Bytes
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on:
push:
branches:
- "**"
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "tests"
cancel-in-progress: true
jobs:
tests:
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/[email protected]
with:
token: ${{ secrets.github_token }}
submodules: recursive
- uses: dtolnay/rust-toolchain@nightly
- name: test
run: |
cargo test --release --all-features --all-targets --all
cargo test --release -F oidn -F thread_rng --no-default-features --all-targets --all
- name: commit
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add tests
git commit -m "tests"
git push