Skip to content

Commit

Permalink
Update CI (#126)
Browse files Browse the repository at this point in the history
* Create CI.yml

* Delete .travis.yml

* Delete .drone.yml

* Delete appveyor.yml

* Update CI.yml

* Update Badges

* Update TagBot.yml
  • Loading branch information
nhz2 authored Nov 24, 2023
1 parent 831f02c commit 961cc42
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 131 deletions.
61 changes: 0 additions & 61 deletions .drone.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.3'
- '1'
os:
- ubuntu-latest
- macos-latest
- windows-latest
arch:
- x64
- x86
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
7 changes: 5 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
issue_comment:
types:
- created
workflow_dispatch:
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
Expand Down
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
## LightXML.jl

[![Build Status](https://travis-ci.org/JuliaIO/LightXML.jl.svg?branch=master)](https://travis-ci.org/JuliaIO/LightXML.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/14l097yi92frqkqm/branch/master?svg=true)](https://ci.appveyor.com/project/tkelman/lightxml-jl/branch/master)
[![LightXML](http://pkg.julialang.org/badges/LightXML_0.6.svg)](http://pkg.julialang.org/?pkg=LightXML&ver=0.6)
[![CI](https://github.com/nhz2/LightXML.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/nhz2/LightXML.jl/actions/workflows/CI.yml)

This package is a light-weight Julia wrapper of [libxml2](http://www.xmlsoft.org), which provides a minimal interface that covers functionalities that are commonly needed:

Expand Down
43 changes: 0 additions & 43 deletions appveyor.yml

This file was deleted.

0 comments on commit 961cc42

Please sign in to comment.