Merge common impls of submit_one_event
into submit_event_chain
(#…
#514
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: Third-party licences | |
permissions: write-all | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [ "opened", "synchronize" ] | |
push: | |
branches: [ master ] | |
jobs: | |
allowed: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
# pull the fork's HEAD instead of the main repo's | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Assert Glommio depends on crates permissively licensed | |
uses: EmbarkStudios/cargo-deny-action@v1 | |
with: | |
log-level: warn | |
command: check licenses | |
arguments: --all-features |