Satellite orbit and rotation #27
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: Licenses | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
reuse: | |
strategy: | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install reuse | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y reuse | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Validate licenses | |
working-directory: ${{github.workspace}} | |
run: | | |
reuse lint |