more concise
This commit is contained in:
		| @ -1,46 +1,40 @@ | ||||
| name: checks | ||||
| on: | ||||
|   pull_request: | ||||
|     paths: | ||||
|     paths: &CODE_PATHS | ||||
|       - 'src/**' | ||||
|       - 'Cargo*' | ||||
|   push: | ||||
|     paths: | ||||
|       - 'src/**' | ||||
|       - 'Cargo*' | ||||
|     paths: *CODE_PATHS | ||||
|     branches: | ||||
|       - main | ||||
|  | ||||
| jobs: | ||||
|   # TODO(cascode) cache checkout for build and test stages? | ||||
|   lint: | ||||
|     container: | ||||
|     container: &BUILD_CONTAINER | ||||
|       # TODO use communitymedia docker registry | ||||
|       image: "cascode/aural-isle-ci:0" | ||||
|       image: &BUILDER_IMAGE "cascode/aural-isle-ci:2" | ||||
|     steps: | ||||
|       - uses: actions/checkout@v3 | ||||
|         with: | ||||
|           github-server-url: "https://code.communitymedia.network" | ||||
|           github-server-url: &GIT_URL "https://code.communitymedia.network" | ||||
|       - name: rustfmt | ||||
|         run: cargo fmt --check | ||||
|   build: | ||||
|     container: | ||||
|       # TODO use communitymedia docker registry | ||||
|       image: "cascode/aural-isle-ci:2" | ||||
|     container: *BUILD_CONTAINER | ||||
|     steps: | ||||
|       - uses: actions/checkout@v3 | ||||
|         with: | ||||
|           github-server-url: "https://code.communitymedia.network" | ||||
|           github-server-url: *GIT_URL | ||||
|       - name: build | ||||
|         run: cargo build | ||||
|   # TODO(cascode) cache builds for test stage | ||||
|   test: | ||||
|     container: | ||||
|       # TODO use communitymedia docker registry | ||||
|       image: "cascode/aural-isle-ci:2" | ||||
|     container: *BUILD_CONTAINER | ||||
|     steps: | ||||
|       - uses: actions/checkout@v3 | ||||
|         with: | ||||
|           github-server-url: "https://code.communitymedia.network" | ||||
|           github-server-url: *GIT_URL | ||||
|       - name: run unit tests | ||||
|         run: cargo test | ||||
|  | ||||
		Reference in New Issue
	
	Block a user