comments: remove useless TODO comments #115
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: Build IoD Sim | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Configure git | |
uses: nodef/git-config.action@v1.0.0 | |
with: | |
credentials: auto | |
entries: |- | |
user.name = Github Actions | |
user.email = email@example.com | |
- name: Install dependencies | |
run: sudo ./tools/install-dependencies.sh | |
- name: Integrate ns3 and IoD Sim | |
run: ./tools/prepare-ns3.sh | |
- name: Build IoD Sim | |
run: ./tools/compile.sh |