Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- main
- development
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
- development
Expand All @@ -19,6 +20,7 @@ on:

jobs:
test-with-coverage:
if: github.event.pull_request.draft == false
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -46,6 +48,7 @@ jobs:
fail_ci_if_error: false

linux-conda-test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand All @@ -70,6 +73,7 @@ jobs:
RUSTFLAGS=-Zsanitizer=leak cargo +nightly test

linux-bundled-test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -80,6 +84,7 @@ jobs:


windows-test:
if: github.event.pull_request.draft == false
env:
SCIPOPTDIR: C:\scipoptdir
runs-on: windows-latest
Expand All @@ -104,6 +109,7 @@ jobs:
cargo test --examples

cargo-fmt-check:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -116,6 +122,7 @@ jobs:
run: cargo fmt --all -- --check

cargo-clippy:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -129,6 +136,7 @@ jobs:
run: cargo clippy --all-features --all-targets -- -D warnings

semver-check:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
Loading