Skip to content

Commit

Permalink
Improvements to GitHub CI (#140)
Browse files Browse the repository at this point in the history
We may be losing access to CircleCI so improve our GitHub actions
workflow to be more equivalent.
  • Loading branch information
jofegan authored Aug 19, 2024
1 parent 3eea35d commit ec1e5da
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# python-opsramp GitHub Actions file
#
# (c) Copyright 2022 Hewlett Packard Enterprise Development LP
# (c) Copyright 2022-2024 Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,20 +14,23 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Test head
name: Unit test

on:
pull_request:
merge_group:
push:
branches: [ master ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
# Deliberately run on Python 3.10 rather than "latest".
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.7

- name: set up environment
run: |
Expand Down

0 comments on commit ec1e5da

Please sign in to comment.