Skip to content
Merged
Show file tree
Hide file tree
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
50 changes: 0 additions & 50 deletions .github/workflows/integration.yml

This file was deleted.

27 changes: 12 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,22 @@ name: Tests

on:
push:
branches:
- main
branches: [main]
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build:
run-tests:
name: Run tests
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Build
run: cargo build

- name: Run tests
run: cargo test -- --test-threads=1
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Run nextest
run: cargo nextest run
Loading
Loading