new delete state to track keys while writing #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
unit: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Go/nginx | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install golang nginx build-essential | |
- name: Set log permissions | |
run: | | |
sudo mkdir -p /var/log/nginx | |
sudo chmod 777 /var/log/nginx /var/log/nginx/* | |
- name: Unit Tests | |
run: go test -v src/lib_test.go src/lib.go | |
- name: Install Python Requirements | |
run: pip3 install --no-cache-dir -r requirements.txt | |
- name: Thrasher Test | |
run: | | |
(./tools/bringup.sh &) | |
./tools/test.py | |
./tools/s3test.py | |
go run tools/thrasher.go | |
./tools/rtest.sh | |