try gitlab workflows after migration #10
Workflow file for this run
This file contains hidden or 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: Basic Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| basic-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Echo basic info | |
| run: | | |
| echo "🎉 GitHub Actions runner is working!" | |
| echo "Current directory: $(pwd)" | |
| echo "Repository: ${{ github.repository }}" | |
| echo "Branch: ${{ github.ref_name }}" | |
| echo "Event: ${{ github.event_name }}" | |
| - name: List workspace contents | |
| run: | | |
| echo "Workspace contents:" | |
| ls -la | |
| - name: Check for ROS packages | |
| run: | | |
| echo "Looking for ROS packages..." | |
| find . -name "package.xml" | head -10 |