From 423a712d89f94df03b03f4f5f1191a0a32eb432e Mon Sep 17 00:00:00 2001 From: Nils Date: Sun, 19 Feb 2023 16:56:02 +0100 Subject: test rename --- .github/workflows/macos.yml | 26 ++++++++++++++++++++++++++ .github/workflows/macos_11.yml | 26 -------------------------- .github/workflows/ubuntu.yml | 27 +++++++++++++++++++++++++++ .github/workflows/ubuntu_2004.yml | 27 --------------------------- 4 files changed, 53 insertions(+), 53 deletions(-) create mode 100644 .github/workflows/macos.yml delete mode 100644 .github/workflows/macos_11.yml create mode 100644 .github/workflows/ubuntu.yml delete mode 100644 .github/workflows/ubuntu_2004.yml (limited to '.github/workflows') diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..2ebd53d --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,26 @@ +name: "macOS" + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + macos-11: + name: Test macOS + runs-on: macos-latest + steps: + - name: Install dependencies 🔧 + run: brew install imagemagick jhead + + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Get assert.sh 🎁 + run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh + + - name: Test 🛠️ + run: bash test.sh \ No newline at end of file diff --git a/.github/workflows/macos_11.yml b/.github/workflows/macos_11.yml deleted file mode 100644 index d3647bf..0000000 --- a/.github/workflows/macos_11.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "macOS 11" - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - - workflow_dispatch: - -jobs: - macos-11: - name: Test macOS 11 - runs-on: macos-11 - steps: - - name: Install dependencies 🔧 - run: brew install imagemagick jhead - - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Get assert.sh 🎁 - run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh - - - name: Test 🛠️ - run: bash test.sh \ No newline at end of file diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..fca5534 --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,27 @@ +name: "Ubuntu" + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + ubuntu-2004: + name: Test Ubuntu + runs-on: ubuntu-latest + steps: + + - name: Dependencies 🔧 + run: sudo apt-get install imagemagick jhead + + - name: Checkout 🛎️ + uses: actions/checkout@v3 + + - name: Get assert.sh 🎁 + run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh + + - name: Test 🛠️ + run: bash test.sh \ No newline at end of file diff --git a/.github/workflows/ubuntu_2004.yml b/.github/workflows/ubuntu_2004.yml deleted file mode 100644 index d3c03a4..0000000 --- a/.github/workflows/ubuntu_2004.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: "Ubuntu 20.04 LTS" - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - - workflow_dispatch: - -jobs: - ubuntu-2004: - name: Test Ubuntu 20.04 LTS - runs-on: ubuntu-20.04 - steps: - - - name: Dependencies 🔧 - run: sudo apt-get install imagemagick jhead - - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Get assert.sh 🎁 - run: curl -f "https://raw.githubusercontent.com/lehmannro/assert.sh/v1.1/assert.sh" -o assert.sh - - - name: Test 🛠️ - run: bash test.sh \ No newline at end of file -- cgit v1.2.3