Skip to content

Commit

Permalink
Refactor action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyphreak committed Jan 19, 2024
1 parent 70207f2 commit 6e228ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: Build
name: build
on:
pull_request:
branches:
- master

jobs:
build:
name: Build
name: build
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: molecule
name: pytest

on:
pull_request:
Expand All @@ -10,7 +10,7 @@ on:

jobs:
molecule:
name: molecule
name: pytest
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: Release
name: release
on:
push:
tags:
- "*"

jobs:
release:
name: Release
name: release
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
Expand Down

0 comments on commit 6e228ac

Please sign in to comment.