Skip to content
New issue

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

Update test.yml #376

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ jobs:
container:
image: ubuntu:focal
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
christophebedard marked this conversation as resolved.
Show resolved Hide resolved
with:
path: '.'
- uses: actions/setup-node@v3.5.1
with:
node-version: '12.x'
- run: .github/workflows/build-and-test.sh
- uses: ros-tooling/setup-ros@v0.2
- uses: actions/checkout@v2
- uses: ros-tooling/setup-ros@v0.6
christophebedard marked this conversation as resolved.
Show resolved Hide resolved
- uses: actions/checkout@v3
with:
repository: ament/ament_lint
ref: 0.8.1
ref: 0.8.2
path: 'ament_lint'
- name: Try default linter
uses: ./
Expand Down Expand Up @@ -57,17 +57,17 @@ jobs:
image: rostooling/setup-ros-docker:ubuntu-focal-latest
options: -u root # setup-node requires root access
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: '.'
- uses: actions/setup-node@v3.5.1
with:
node-version: '12.x'
- run: .github/workflows/build-and-test.sh
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ament/ament_lint
ref: 0.8.1
ref: 0.8.2
path: 'ament_lint'
- name: Try default linter
uses: ./
Expand Down
Loading