We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
want to have this action yml
# .github/workflows/go-arctest.yml name: Architecture Test on: [push, pull_request] jobs: check-architecture: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Run go-arctest uses: mstrYoda/go-arctest@v1 with: config: '.github/arctest-config.yml'
with config (just idea)
# .github/arctest-config.yml layers: - name: Domain pattern: "^domain/.*$" - name: Application pattern: "^application/.*$" - name: Infrastructure pattern: "^infrastructure/.*$" - name: Presentation pattern: "^presentation/.*$" rules: - from: Application to: Domain - from: Infrastructure to: Domain - from: Infrastructure to: Application - from: Presentation to: Domain - from: Presentation to: Application - from: Presentation to: Infrastructure
ref: https://docs.github.com/en/actions/sharing-automations/creating-actions/about-custom-actions
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Requirements
End case
want to have this action yml
with config (just idea)
ref: https://docs.github.com/en/actions/sharing-automations/creating-actions/about-custom-actions
The text was updated successfully, but these errors were encountered: