Skip to content

Commit

Permalink
run test in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
suharev7 committed Oct 27, 2023
1 parent 4b37059 commit 644001d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 48 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test
on:
workflow_dispatch: {}
push:
branches:
- async-await
pull_request:
branches:
- async-await

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

services:
clickhouse:
image: yandex/clickhouse-server
ports:
- 9000:9000

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
48 changes: 0 additions & 48 deletions .travis.yml

This file was deleted.

0 comments on commit 644001d

Please sign in to comment.