Skip to content

Commit

Permalink
Add a simple test
Browse files Browse the repository at this point in the history
  • Loading branch information
garbas committed Aug 29, 2024
1 parent 1a03cc2 commit bfd1814
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
updates:

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 1
commit-message:
prefix: "chore"
include: "scope"
groups:
all:
patterns:
- "*"
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "CI"

on:
pull_request:
workflow_dispatch:
push:
branches:
- "main"

concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.sha }}"
cancel-in-progress: true

jobs:

test-action:
name: "Github Action Test"
runs-on: ${{ matrix.os }}

strategy:
matrix:
os:
- "ubuntu-latest"
- "macos-latest"

steps:
- name: "Checkout"
uses: "actions/checkout@v4"

- name: "Test Local Action"
uses: "flox/install-flox-action"

- name: "Test Local Action"
uses: "./"
with:
environment: "flox/nb"
command: "python --version"

0 comments on commit bfd1814

Please sign in to comment.