From 3c33f3d86e42eee279429007682fb6322173717f Mon Sep 17 00:00:00 2001 From: Andrew Ealovega Date: Tue, 26 Sep 2023 03:31:38 -0400 Subject: [PATCH] init2 --- .github/workflows/main.yml | 18 ++++++++++++++++++ .gitignore | 5 +++++ 2 files changed, 23 insertions(+) create mode 100644 .github/workflows/main.yml create mode 100644 .gitignore diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..286d453 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,18 @@ +name: CI + +on: [ push, pull_request ] + +jobs: + industrial_ci: + runs-on: ubuntu-latest + strategy: + matrix: + env: + - { ROS_DISTRO: humble, ROS_REPO: testing } + - { ROS_DISTRO: humble, ROS_REPO: main } + name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }}) + steps: + - uses: actions/checkout@v3 + - uses: 'ros-industrial/industrial_ci@master' + env: ${{ matrix.env }} + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6101271 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +log +build +install +.vscode +.cache \ No newline at end of file