Skip to content

test

test #38

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build test environment
run: |
touch .env_keys
cargo generate-lockfile
# Separating build and run didn't work
# make build_test
- name: Run tests except internal
run: |
make test -v -m "not external"