Update access control part 1 #292
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: solstat | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: {} | |
workflow_call: | |
jobs: | |
run-tests: | |
name: Solstat | |
runs-on: ubuntu-latest | |
# https://docs.github.com/en/actions/reference/authentication-in-a-workflow | |
permissions: | |
id-token: write | |
packages: read | |
contents: read | |
security-events: write | |
timeout-minutes: 15 | |
container: | |
image: ghcr.io/nayms/contracts-builder:latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Make solstat report | |
run: solstat --path ./src/diamonds/nayms/ | |
- name: Publish solstat report | |
run: cat solstat_report.md >> $GITHUB_STEP_SUMMARY |