Skip to content
This repository has been archived by the owner on Apr 10, 2021. It is now read-only.

refactor into autorust beginning #6

Merged
merged 23 commits into from
Sep 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,25 @@ jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: git clone
uses: actions/checkout@v2
with:
path: autorust
- name: install rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: build
run: cargo build
- name: unit tests
run: |
cd $GITHUB_WORKSPACE/autorust
cargo test --lib
- name: git clone Azure/azure-rest-api-specs
uses: actions/checkout@v2
with:
repository: Azure/azure-rest-api-specs
path: azure-rest-api-specs
- name: integration tests azure_rest_api_specs
run: |
cd $GITHUB_WORKSPACE/autorust
cargo test --test azure_rest_api_specs
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
_git2*
b.rs
*.txt
client.rs
model.rs
client*.rs
model*.rs
generated
Loading