finish arweave #360
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: Automated Tests | |
on: [push] | |
jobs: | |
Automated_Tests: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.18.0" # The Go version to download (if necessary) and use. | |
- name: Figure out where we are | |
run: ls | |
- name: Unit tests | |
run: go test ./... | |
- name: Integration tests | |
run: go run ./integration-tests/... |