Skip to content

Cambio de struct 'Member' a 'Employee' #30

Cambio de struct 'Member' a 'Employee'

Cambio de struct 'Member' a 'Employee' #30

Workflow file for this run

on:
pull_request:
branches:
- develop
name: Tests
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Cache dependencies
uses: actions/cache@v2
env:
cache-name: cache-dependencies
with:
path: |
~/.cargo/.crates.toml
~/.cargo/.crates2.json
~/.cargo/bin
~/.cargo/registry/index
~/.cargo/registry/cache
target
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Cargo.lock') }}
- name: Run tests
run: cargo test