fix: Fixed CORS headers in dataproxy, authors in server #1629
Workflow file for this run
This file contains hidden or 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
| on: | |
| - push | |
| - pull_request | |
| name: test | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: test | |
| env: | |
| CARGO_NET_GIT_FETCH_WITH_CLI: true | |
| steps: | |
| - uses: arduino/setup-protoc@v1 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Setup | |
| run: docker compose -f compose.yaml up -d | |
| - name: cargo test | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --all-features -- --include-ignored |