Skip to content

Commit

Permalink
Use ros:iron and ros:rolling containers
Browse files Browse the repository at this point in the history
  • Loading branch information
rkent committed Mar 25, 2024
1 parent 739300a commit 76abbd4
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,26 @@ name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
containers: ['ros-iron', 'ros-rolling']

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- uses: actions/cache@v2
uses: actions/setup-python@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.cfg') }}
restore-keys: |
${{ runner.os }}-pip-
cache: 'pip'

- name: Install pip dependencies
run: |
Expand Down

0 comments on commit 76abbd4

Please sign in to comment.