Skip to content

Commit

Permalink
fix: aemo nem12 method flag changes (#10)
Browse files Browse the repository at this point in the history
### Added

*   [NEM12 Method flags](./lib/aemo/nem12/quality_method.rb) 22, 23, 24, 25 as per [Metrology Procedure: Part B v7.8 @ 2024-11-04](https://aemo.com.au/-/media/files/electricity/nem/retail_and_metering/market_settlement_and_transfer_solutions/2024/metrology-procedure-part-b-v781-clean.pdf?la=en)

### Changed

*   [NEM12 Method flags](./lib/aemo/nem12/quality_method.rb) 14, 15, 16, 20 as per [Metrology Procedure: Part B v7.8 @ 2024-11-04](https://aemo.com.au/-/media/files/electricity/nem/retail_and_metering/market_settlement_and_transfer_solutions/2024/metrology-procedure-part-b-v781-clean.pdf?la=en)
  • Loading branch information
jufemaiz authored Nov 26, 2024
1 parent ae94e25 commit 86004ab
Show file tree
Hide file tree
Showing 38 changed files with 1,188 additions and 252 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,26 @@ jobs:
name: 'lint'
strategy:
matrix:
go-version: ["1.17.x"] # linting in 1 go version is enough
go-version: ["1.22.x"] # linting in 1 go version is enough
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: 'actions/checkout@v2'
- uses: 'actions/setup-go@v5'
with:
go-version: stable
- name: ⚙️ Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y
sudo apt-get install libbtrfs-dev -y
sudo apt-get install libgpgme-dev -y
go mod tidy
- name: 'golangci-lint'
uses: 'golangci/golangci-lint-action@v2'
uses: 'golangci/golangci-lint-action@v6'
with:
# Optional: 'version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version'
version: 'v1.43'
version: 'v1.59'

# Optional: 'working directory, useful for monorepos'
# working-directory: 'somedir'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ jobs:
setup:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
go-version: [1.20.x, 1.21.x, 1.22.x, 1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: 'Install Go'
uses: 'actions/setup-go@v2'
with:
go-version: '1.17.x'
go-version: '1.20.x'
- name: 'Checkout code'
uses: 'actions/checkout@v2'
- uses: 'actions/cache@v2'
Expand All @@ -34,7 +34,7 @@ jobs:
needs: ['setup']
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
go-version: [1.20.x, 1.21.x, 1.22.x, 1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
Loading

0 comments on commit 86004ab

Please sign in to comment.