This commit is contained in:
parent
85d3b85823
commit
4f20a7632a
|
@ -1,27 +1,32 @@
|
|||
name: Run Cargo Tests
|
||||
name: Rust Library Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
- name: Checkout code
|
||||
run: |
|
||||
docker run --rm \
|
||||
-v ${PWD}:/workspace \
|
||||
-w /workspace \
|
||||
alpine/git clone $CI_REPOSITORY_URL .
|
||||
|
||||
- name: Set up Docker container
|
||||
uses: addnab/docker-run-action@v3
|
||||
with:
|
||||
image: rust:latest
|
||||
options: -v ${{ github.workspace }}:/workspace
|
||||
run: |
|
||||
cd /workspace
|
||||
cargo test --lib
|
||||
- name: Set up Rust
|
||||
run: |
|
||||
docker run --rm \
|
||||
-v ${PWD}:/workspace \
|
||||
-w /workspace \
|
||||
rust:latest \
|
||||
sh -c "rustup update"
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
docker run --rm \
|
||||
-v ${PWD}:/workspace \
|
||||
-w /workspace \
|
||||
rust:latest \
|
||||
sh -c "cargo test --lib"
|
||||
|
||||
|
|
Loading…
Reference in a new issue